Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
|
@@ -1,5 +1,10 @@
|
|
| 1 |
FROM nvidia/cuda:11.6.1-devel-ubuntu20.04
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
WORKDIR /code
|
| 4 |
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
|
| 1 |
FROM nvidia/cuda:11.6.1-devel-ubuntu20.04
|
| 2 |
|
| 3 |
+
RUN apt-get update
|
| 4 |
+
|
| 5 |
+
RUN apt-get install -y python3
|
| 6 |
+
|
| 7 |
+
|
| 8 |
WORKDIR /code
|
| 9 |
|
| 10 |
COPY ./requirements.txt /code/requirements.txt
|