From def397de5efe797d9ec39d179321b3743ed3b5c4 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sun, 12 Dec 2021 21:11:38 +0000 Subject: [PATCH] Dockerfile: add setuptools for gunicorn Otherwise gets removed with pip --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2108619..1aea11a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:latest ADD . /app 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; \ pip3 install --no-cache-dir /app[full]; \ apk del .build-deps