From 8b2dc868dba338960270e3ed4d1aed4f9be65fc8 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Tue, 1 Dec 2020 10:21:50 +0200 Subject: [PATCH] Ensure working pip. Version 21.0 of pip will drop Python 2.7 support, install the last previous version. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fd1e249..0320460 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,6 @@ RUN apt-get update && \ libssl-dev \ zlib1g-dev \ && \ - pip install --progress-bar=off --no-cache-dir --upgrade pip tox pipenv && \ + pip install --progress-bar=off --no-cache-dir --upgrade pip<21.0 tox pipenv && \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/* /var/cache/apt/archives/* /root/.cache/* COPY --from=goose /usr/local/bin/goose /usr/local/bin/goose -- GitLab