simonduerr commited on
Commit
28663b2
·
verified ·
1 Parent(s): 2cec6aa

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -1,8 +1,11 @@
1
- FROM nvidia/cuda:11.6.1-devel-ubuntu22.04
2
 
3
  RUN apt-get update
4
 
5
- RUN apt-get install -y python3 python3-pip
 
 
 
6
 
7
  WORKDIR /code
8
 
 
1
+ FROM nvidia/cuda:11.6.1-devel-ubuntu20.04
2
 
3
  RUN apt-get update
4
 
5
+ RUN apt-get install -y software-properties-common
6
+ RUN add-apt-repository ppa:deadsnakes/ppa
7
+ RUN apt-get update
8
+ RUN apt-get install -y python3.10 python3-pip
9
 
10
  WORKDIR /code
11