From 2cf7481f7bd5eb2db57955173c68072b2803c784 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sun, 19 Apr 2020 13:20:11 +0200 Subject: [PATCH] o --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index cd28c10..1383ebf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,9 @@ FROM alpine:latest -RUN apk add python3 py3-lxml py3-pip git +RUN apk add python3 py3-lxml py3-gunicorn py3-pip git -RUN pip3 install gunicorn -RUN pip3 install git+https://git.pictuga.com/pictuga/morss.git@master +ADD . /app +WORKDIR /app +RUN pip3 install . CMD gunicorn --bind 0.0.0.0:8080 -w 4 morss:cgi_standalone_app