Skip to content

Commit

Permalink
Install deps on sys python, too
Browse files Browse the repository at this point in the history
  • Loading branch information
mmore500 committed Jun 11, 2023
1 parent 736f718 commit f559cde
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ RUN \
echo "finalized set up dependency versions"

RUN \
curl -sS https://bootstrap.pypa.io/get-pip.py | python3 \
&& \
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 \
&& \
pip install --upgrade --force-reinstall pip virtualenv \
Expand All @@ -178,16 +180,22 @@ RUN \
&& \
python3.10 -m pip install --upgrade --force-reinstall pip virtualenv \
&& \
python3 -m pip install --upgrade --force-reinstall pip virtualenv \
&& \
pip install wheel==0.30.0 six==1.16.0 \
&& \
pip3 install wheel==0.30.0 six==1.16.0 \
&& \
python3.10 -m pip install wheel==0.30.0 six==1.16.0 \
&& \
python3 -m pip install wheel==0.30.0 six==1.16.0 \
&& \
pip3 install -r /opt/Empirical/doc/requirements.txt \
&& \
python3.10 -m pip install -r /opt/Empirical/doc/requirements.txt \
&& \
python3 -m pip install -r /opt/Empirical/doc/requirements.txt \
&& \
echo "installed documentation build requirements"

RUN \
Expand Down

0 comments on commit f559cde

Please sign in to comment.