Skip to content

Commit f559cde

Browse files
committed
Install deps on sys python, too
1 parent 736f718 commit f559cde

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Diff for: Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,8 @@ RUN \
170170
echo "finalized set up dependency versions"
171171

172172
RUN \
173+
curl -sS https://bootstrap.pypa.io/get-pip.py | python3 \
174+
&& \
173175
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 \
174176
&& \
175177
pip install --upgrade --force-reinstall pip virtualenv \
@@ -178,16 +180,22 @@ RUN \
178180
&& \
179181
python3.10 -m pip install --upgrade --force-reinstall pip virtualenv \
180182
&& \
183+
python3 -m pip install --upgrade --force-reinstall pip virtualenv \
184+
&& \
181185
pip install wheel==0.30.0 six==1.16.0 \
182186
&& \
183187
pip3 install wheel==0.30.0 six==1.16.0 \
184188
&& \
185189
python3.10 -m pip install wheel==0.30.0 six==1.16.0 \
186190
&& \
191+
python3 -m pip install wheel==0.30.0 six==1.16.0 \
192+
&& \
187193
pip3 install -r /opt/Empirical/doc/requirements.txt \
188194
&& \
189195
python3.10 -m pip install -r /opt/Empirical/doc/requirements.txt \
190196
&& \
197+
python3 -m pip install -r /opt/Empirical/doc/requirements.txt \
198+
&& \
191199
echo "installed documentation build requirements"
192200

193201
RUN \

0 commit comments

Comments
 (0)