simonduerr commited on
Commit
5e2ed85
·
verified ·
1 Parent(s): 8256f46

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -6
Dockerfile CHANGED
@@ -1,13 +1,16 @@
1
- FROM nvidia/cuda:11.6.1-devel-ubuntu20.04
2
 
3
- ENV TZ=Europe/Berlin
4
- RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
 
 
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
- && add-apt-repository ppa:deadsnakes/ppa && apt install -y python3.10
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