Spaces:
Sleeping
Sleeping
simonduerr
commited on
Update Dockerfile
Browse files- Dockerfile +9 -6
Dockerfile
CHANGED
@@ -1,13 +1,16 @@
|
|
1 |
-
FROM nvidia/cuda:11.
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
5 |
|
6 |
RUN apt-get update
|
7 |
-
RUN apt install -y tzdata
|
8 |
-
RUN apt-get -y update && apt-get -y install software-properties-common \
|
9 |
-
|
10 |
|
|
|
11 |
WORKDIR /code
|
12 |
|
13 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
1 |
+
FROM nvidia/cuda:11.8.0-devel-ubuntu22.04
|
2 |
|
3 |
+
#FROM nvidia/cuda:11.6.1-devel-ubuntu20.04
|
4 |
+
|
5 |
+
#ENV TZ=Europe/Berlin
|
6 |
+
#RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
7 |
|
8 |
RUN apt-get update
|
9 |
+
#RUN apt install -y tzdata
|
10 |
+
#RUN apt-get -y update && apt-get -y install software-properties-common \
|
11 |
+
#&& add-apt-repository ppa:deadsnakes/ppa && apt install -y python3.10
|
12 |
|
13 |
+
RUN apt-get install -y python3 python3-pip
|
14 |
WORKDIR /code
|
15 |
|
16 |
COPY ./requirements.txt /code/requirements.txt
|