Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +7 -2
Dockerfile
CHANGED
@@ -1,5 +1,10 @@
|
|
1 |
-
# Use
|
2 |
-
FROM
|
|
|
|
|
|
|
|
|
|
|
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
|