File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,8 @@ RUN \
170
170
echo "finalized set up dependency versions"
171
171
172
172
RUN \
173
+ curl -sS https://bootstrap.pypa.io/get-pip.py | python3 \
174
+ && \
173
175
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 \
174
176
&& \
175
177
pip install --upgrade --force-reinstall pip virtualenv \
@@ -178,16 +180,22 @@ RUN \
178
180
&& \
179
181
python3.10 -m pip install --upgrade --force-reinstall pip virtualenv \
180
182
&& \
183
+ python3 -m pip install --upgrade --force-reinstall pip virtualenv \
184
+ && \
181
185
pip install wheel==0.30.0 six==1.16.0 \
182
186
&& \
183
187
pip3 install wheel==0.30.0 six==1.16.0 \
184
188
&& \
185
189
python3.10 -m pip install wheel==0.30.0 six==1.16.0 \
186
190
&& \
191
+ python3 -m pip install wheel==0.30.0 six==1.16.0 \
192
+ && \
187
193
pip3 install -r /opt/Empirical/doc/requirements.txt \
188
194
&& \
189
195
python3.10 -m pip install -r /opt/Empirical/doc/requirements.txt \
190
196
&& \
197
+ python3 -m pip install -r /opt/Empirical/doc/requirements.txt \
198
+ && \
191
199
echo "installed documentation build requirements"
192
200
193
201
RUN \
You can’t perform that action at this time.
0 commit comments