E-Hospital commited on
Commit
d488e6f
·
1 Parent(s): 106eed9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -12,8 +12,7 @@ RUN add-apt-repository ppa:deadsnakes/ppa
12
 
13
  RUN apt install -y python3.10 python3.10-distutils
14
 
15
- # Install pip 23.1.2
16
- RUN python3.10 -m pip install --no-cache-dir --upgrade pip==23.1.2
17
 
18
  RUN apt-get install -y git-all
19
 
 
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