From 4aa56067523d4526c67a040fd9c44556a3173b03 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sun, 19 Apr 2020 13:07:30 +0200 Subject: [PATCH] Docker: install from local python package --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cd28c10..94f8383 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,6 @@ FROM alpine:latest RUN apk add python3 py3-lxml py3-pip git RUN pip3 install gunicorn -RUN pip3 install git+https://git.pictuga.com/pictuga/morss.git@master +RUN pip3 install . CMD gunicorn --bind 0.0.0.0:8080 -w 4 morss:cgi_standalone_app