Add --no-use-pep517 to pip, as a workaround for build issues.

pull/156/head
Ryan Kelly 5 years ago
parent 0fa45210e4
commit 7b3b8579ac
No known key found for this signature in database
GPG Key ID: FB70C973A037D258

@ -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 -r requirements.txt \
&& pip install --upgrade --no-cache-dir -r dev-requirements.txt \
&& 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 \
&& apk del g++
COPY . /app

Loading…
Cancel
Save