simonduerr commited on
Commit
67cd0ff
·
verified ·
1 Parent(s): 28663b2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -4
Dockerfile CHANGED
@@ -2,10 +2,8 @@ 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
 
 
2
 
3
  RUN apt-get update
4
 
5
+ RUN apt-get -y update && apt-get install software-properties-common \
6
+ && add-apt-repository ppa:deadsnakes/ppa && apt install python3.10 python3-pip
 
 
7
 
8
  WORKDIR /code
9