Update Dockerfile

--no-use-pep517 is not supported anymore
pull/173/head
Luke 5 years ago committed by GitHub
parent a9fa69d598
commit 745bff65e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,8 +13,8 @@ COPY ./dev-requirements.txt /app/dev-requirements.txt
RUN apk --no-cache update \
&& apk add dumb-init libstdc++ libffi-dev openssl-dev g++ \
&& pip install --upgrade pip \
&& pip install --upgrade --no-cache-dir --no-use-pep517 -r requirements.txt \
&& pip install --upgrade --no-cache-dir --no-use-pep517 -r dev-requirements.txt \
&& pip install --upgrade --no-cache-dir -r requirements.txt \
&& pip install --upgrade --no-cache-dir -r dev-requirements.txt \
&& apk del g++
COPY . /app

Loading…
Cancel
Save