From ccf79ea6dc6e5442505d0e121664ed2e0713f3ff Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Mon, 1 Feb 2021 09:32:38 -0500 Subject: [PATCH] Use 2.7-compatible get-pip in docker build. --- 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 50d3f0bb13e..6ef321ae32c 100644 --- a/etc/taskcluster/docker/base.dockerfile +++ b/etc/taskcluster/docker/base.dockerfile @@ -39,6 +39,6 @@ RUN \ && \ # # Python 2 bits that have been removed from Ubuntu packages - curl https://bootstrap.pypa.io/get-pip.py -sSf -o get-pip.py && \ + curl https://bootstrap.pypa.io/2.7/get-pip.py -sSf -o get-pip.py && \ python2 get-pip.py && \ python2 -m pip install virtualenv