This commit is contained in:
djmailhot 2020-10-14 21:10:27 +00:00 committed by GitHub
commit 7f06bf638b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,10 +18,13 @@ FROM base as builder
RUN apt-get -qq update \
&& apt-get install -y --no-install-recommends \
g++
g++ libzmq3-dev
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