Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
# Use NVIDIA CUDA as base for GPU support
|
| 2 |
-
FROM
|
| 3 |
|
| 4 |
# Avoid prompts during installation
|
| 5 |
ENV DEBIAN_FRONTEND=noninteractive
|
|
@@ -11,6 +11,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 11 |
python3 \
|
| 12 |
python3-pip \
|
| 13 |
wget \
|
|
|
|
|
|
|
| 14 |
&& rm -rf /var/lib/apt/lists/*
|
| 15 |
|
| 16 |
# Install code-server (VS Code Web)
|
|
|
|
| 1 |
# Use NVIDIA CUDA as base for GPU support
|
| 2 |
+
FROM ubuntu:22.04
|
| 3 |
|
| 4 |
# Avoid prompts during installation
|
| 5 |
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
| 11 |
python3 \
|
| 12 |
python3-pip \
|
| 13 |
wget \
|
| 14 |
+
docker.io \
|
| 15 |
+
sudo \
|
| 16 |
&& rm -rf /var/lib/apt/lists/*
|
| 17 |
|
| 18 |
# Install code-server (VS Code Web)
|