lele-cecere
commited on
Commit
•
39b6d10
1
Parent(s):
a0b3b95
changed docker image
Browse files- Dockerfile +2 -5
Dockerfile
CHANGED
@@ -1,10 +1,7 @@
|
|
1 |
FROM docker.io/nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04@sha256:8f9dd0d09d3ad3900357a1cf7f887888b5b74056636cd6ef03c160c3cd4b1d95
|
2 |
|
3 |
-
RUN apt-get
|
4 |
-
|
5 |
-
python3 \
|
6 |
-
python3-dev \
|
7 |
-
python3-pip
|
8 |
WORKDIR /code
|
9 |
|
10 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
1 |
FROM docker.io/nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04@sha256:8f9dd0d09d3ad3900357a1cf7f887888b5b74056636cd6ef03c160c3cd4b1d95
|
2 |
|
3 |
+
RUN apt-get update && apt-get install -y python3 python3-pip
|
4 |
+
|
|
|
|
|
|
|
5 |
WORKDIR /code
|
6 |
|
7 |
COPY ./requirements.txt /code/requirements.txt
|