Dockerfile: add setuptools for gunicorn
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
Otherwise gets removed with pipmaster
parent
d07aa566ed
commit
def397de5e
|
@ -3,7 +3,7 @@ FROM alpine:latest
|
||||||
ADD . /app
|
ADD . /app
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
apk add --no-cache --virtual .run-deps python3 py3-lxml py3-setproctitle; \
|
apk add --no-cache --virtual .run-deps python3 py3-lxml py3-setproctitle py3-setuptools; \
|
||||||
apk add --no-cache --virtual .build-deps py3-pip py3-wheel; \
|
apk add --no-cache --virtual .build-deps py3-pip py3-wheel; \
|
||||||
pip3 install --no-cache-dir /app[full]; \
|
pip3 install --no-cache-dir /app[full]; \
|
||||||
apk del .build-deps
|
apk del .build-deps
|
||||||
|
|
Loading…
Reference in New Issue