From f559cde0a6288388c6390541c137f21d161aea3d Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Sat, 10 Jun 2023 22:59:54 -0700 Subject: [PATCH] Install deps on sys python, too --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index 21f4410d40..6879625359 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ @@ -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 \