rvc11 commited on
Commit
551883c
·
verified ·
1 Parent(s): e087d9a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -2
Dockerfile CHANGED
@@ -1,5 +1,10 @@
1
- # Use the official Visual Studio Code Server image
2
- FROM codercom/code-server:latest
 
 
 
 
 
3
  # Set the user as root with the custom name
4
  USER root
5
  # Expose the default port used by Visual Studio Code Server
 
1
+ # Use NVIDIA CUDA image
2
+ FROM nvidia/cuda:12.9.1-cudnn-devel-ubuntu24.04
3
+
4
+ RUN apt install curl wget dumb-init -y
5
+
6
+ RUN curl http://code-server.dev/install.sh -fsSL | bash
7
+
8
  # Set the user as root with the custom name
9
  USER root
10
  # Expose the default port used by Visual Studio Code Server