From 07cc14719beb1bb0cae1c98fe2f598c3307e28dd Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Mon, 8 Feb 2021 23:55:27 -0500 Subject: [PATCH 1/3] Update pip when building docker image. --- etc/taskcluster/docker/base.dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/taskcluster/docker/base.dockerfile b/etc/taskcluster/docker/base.dockerfile index 6ef321ae32c..87c42d0ab4e 100644 --- a/etc/taskcluster/docker/base.dockerfile +++ b/etc/taskcluster/docker/base.dockerfile @@ -42,3 +42,5 @@ RUN \ curl https://bootstrap.pypa.io/2.7/get-pip.py -sSf -o get-pip.py && \ python2 get-pip.py && \ python2 -m pip install virtualenv + # Ensure modern pip is present. + python3 -m pip install -U pip From d4464827419f35ac69df2ef109fab0a8cb0ccb09 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Mon, 8 Feb 2021 23:56:26 -0500 Subject: [PATCH 2/3] Fix syntax error. --- etc/taskcluster/docker/base.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/taskcluster/docker/base.dockerfile b/etc/taskcluster/docker/base.dockerfile index 87c42d0ab4e..38dd8106ba6 100644 --- a/etc/taskcluster/docker/base.dockerfile +++ b/etc/taskcluster/docker/base.dockerfile @@ -41,6 +41,6 @@ RUN \ # Python 2 bits that have been removed from Ubuntu packages curl https://bootstrap.pypa.io/2.7/get-pip.py -sSf -o get-pip.py && \ python2 get-pip.py && \ - python2 -m pip install virtualenv + python2 -m pip install virtualenv \ # Ensure modern pip is present. python3 -m pip install -U pip From 277c3b03f45c521136490be72cbcfdd3f6ef1029 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Tue, 9 Feb 2021 00:05:50 -0500 Subject: [PATCH 3/3] More syntax errors. --- etc/taskcluster/docker/base.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/taskcluster/docker/base.dockerfile b/etc/taskcluster/docker/base.dockerfile index 38dd8106ba6..1d58e2b932f 100644 --- a/etc/taskcluster/docker/base.dockerfile +++ b/etc/taskcluster/docker/base.dockerfile @@ -41,6 +41,6 @@ RUN \ # Python 2 bits that have been removed from Ubuntu packages curl https://bootstrap.pypa.io/2.7/get-pip.py -sSf -o get-pip.py && \ python2 get-pip.py && \ - python2 -m pip install virtualenv \ + python2 -m pip install virtualenv && \ # Ensure modern pip is present. python3 -m pip install -U pip