zyxciss commited on
Commit
d506f40
·
verified ·
1 Parent(s): 6f15dec

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -1
Dockerfile CHANGED
@@ -5,7 +5,23 @@ FROM ubuntu:latest
5
  RUN apt-get update && apt-get install -y \
6
  curl \
7
  gnupg
8
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  # Add NVIDIA package repositories
10
  RUN curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \
11
  && echo "deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://nvidia.github.io/libnvidia-container/stable/deb/ $(. /etc/os-release; echo $UBUNTU_CODENAME) main" > /etc/apt/sources.list.d/nvidia-container-toolkit.list
 
5
  RUN apt-get update && apt-get install -y \
6
  curl \
7
  gnupg
8
+ RUN apt-get update && apt-get install -y \
9
+ curl \
10
+ wget \
11
+ nano \
12
+ vim \
13
+ neofetch \
14
+ neovim \
15
+ iputils-ping \
16
+ git \
17
+ sudo \
18
+ procps \
19
+ coreutils \
20
+ openssh-client \
21
+ && apt-get clean
22
+
23
+ # Install SSHX
24
+ RUN curl -sSf https://sshx.io/get | sh
25
  # Add NVIDIA package repositories
26
  RUN curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \
27
  && echo "deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://nvidia.github.io/libnvidia-container/stable/deb/ $(. /etc/os-release; echo $UBUNTU_CODENAME) main" > /etc/apt/sources.list.d/nvidia-container-toolkit.list