Pin pip version to avoid PEP 517

This commit is contained in:
David Mailhot 2020-10-14 14:10:05 -07:00
parent 338ffe0dc1
commit ebedfdfbf0

View file

@ -22,6 +22,9 @@ RUN apt-get -qq update \
COPY requirements.txt .
# Pin Pip version: unable to build wheel for gevent with PEP 517
RUN python -m pip install --force-reinstall pip==20.1.1
RUN pip install --prefix="/install" -r requirements.txt
FROM base