From 692632b8dd3b393ac0cac297ef5541a3be65df72 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 19 May 2020 10:30:08 +0100 Subject: Don't update pip in Dockerfile Ubuntu wants to manage it themselves, and disables upgrading pip(?) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d5e3e143..9fc71092 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN apt-get install -y --no-install-recommends \ python3-dev \ python3-tk \ python3-pip && \ - pip3 install --no-cache-dir --upgrade pip setuptools && \ + pip3 install --no-cache-dir --upgrade setuptools && \ echo "alias python='python3'" >> /root/.bash_aliases && \ echo "alias pip='pip3'" >> /root/.bash_aliases && \ cd /usr/local/bin && ln -s /usr/bin/python3 python && \ -- cgit v1.2.3