From c5143e9949deacf23e5b43642579622f68a4947b Mon Sep 17 00:00:00 2001 From: gitea Date: Fri, 26 Mar 2021 19:35:23 +0000 Subject: [PATCH] * pip upgrade on workspace https://stackoverflow.com/a/65896996 --- dockerfiles/workspace/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/workspace/Dockerfile b/dockerfiles/workspace/Dockerfile index ca096ac..198231c 100644 --- a/dockerfiles/workspace/Dockerfile +++ b/dockerfiles/workspace/Dockerfile @@ -203,7 +203,7 @@ ARG INSTALL_PYTHON=false RUN if [ ${INSTALL_PYTHON} = true ]; then \ apt-get -y install python python-pip python-dev build-essential \ - && python -m pip install --upgrade pip \ + && python -m pip install --upgrade "pip < 21.0" \ && python -m pip install --upgrade virtualenv \ ;fi