E-Hospital commited on
Commit
2026ead
·
1 Parent(s): d488e6f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -12,7 +12,9 @@ RUN add-apt-repository ppa:deadsnakes/ppa
12
 
13
  RUN apt install -y python3.10 python3.10-distutils
14
 
15
- RUN wget https://bootstrap.pypa.io/23.1.2/get-pip.py && python3.10 get-pip.py && rm get-pip.py
 
 
16
 
17
  RUN apt-get install -y git-all
18
 
 
12
 
13
  RUN apt install -y python3.10 python3.10-distutils
14
 
15
+ RUN apt-get install -y curl
16
+
17
+ RUN curl https://bootstrap.pypa.io/23.1.2/get-pip.py -o get-pip.py && python3.10 get-pip.py && rm get-pip.py
18
 
19
  RUN apt-get install -y git-all
20