From 18ec10fe44515dbd60537bbb961981b5a4e068f4 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sat, 3 Oct 2020 21:59:43 +0200 Subject: [PATCH] Use hopefully more-up-to-date pip gunicorn --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d39fa5c..9e6017c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM alpine:latest -RUN apk add --no-cache python3 py3-lxml py3-gunicorn py3-pip py3-wheel git +RUN apk add --no-cache python3 py3-lxml py3-pip py3-wheel git ADD . /app -RUN pip3 install --no-cache-dir /app +RUN pip3 install --no-cache-dir /app gunicorn CMD gunicorn --bind 0.0.0.0:8080 -w 4 --preload morss