Auto merge of #28130 - servo:jdm-patch-48, r=jdm

Use 2.7-compatible get-pip in docker build.

- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #28122
- [x] There are tests for these changes
This commit is contained in:
bors-servo 2021-02-01 09:33:20 -05:00 committed by GitHub
commit d4d7fda606
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,6 +39,6 @@ RUN \
&& \ && \
# #
# Python 2 bits that have been removed from Ubuntu packages # 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 get-pip.py && \
python2 -m pip install virtualenv python2 -m pip install virtualenv