From fec5b8f6468ce16c17803dd930c4e78315d578f6 Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <mm@ucw.sh> Date: Wed, 2 Sep 2020 13:53:27 +0200 Subject: [PATCH] [jupyterhub] Fix installing pip into venv --- jupyterhub/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterhub/Dockerfile b/jupyterhub/Dockerfile index 9e559c1..fa4ebf6 100755 --- a/jupyterhub/Dockerfile +++ b/jupyterhub/Dockerfile @@ -43,7 +43,7 @@ RUN python${PYTHON_VERSION} -m pip --no-cache-dir install \ RUN mkdir -p ~/.venv && \ python${PYTHON_VERSION} -m venv ~/.venv/robofish && \ . ~/.venv/robofish/bin/activate && \ - pip --no-cache-dir install --upgrade pip==20.1.1 && \ + python${PYTHON_VERSION} -m pip --no-cache-dir install --upgrade pip==20.1.1 && \ pip --no-cache-dir install --upgrade setuptools==49.1.0 && \ pip install tensorflow==1.15.3 && \ pip --no-cache-dir install \ -- GitLab