From e76ab2b631c47e5c3b2ff70189ffa1d1a7e62b24 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sun, 23 Aug 2020 18:59:02 +0200 Subject: [PATCH] Update gunicorn instructions --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 231388e..6653bac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,4 +5,4 @@ RUN apk add python3 py3-lxml py3-gunicorn py3-pip git ADD . /app RUN pip3 install /app -CMD gunicorn --bind 0.0.0.0:8080 -w 4 morss:cgi_standalone_app +CMD gunicorn --bind 0.0.0.0:8080 -w 4 morss diff --git a/README.md b/README.md index 089266e..dfc552b 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ uwsgi --http :8080 --plugin python --wsgi-file main.py #### Using Gunicorn ```shell -gunicorn morss:cgi_standalone_app +gunicorn morss ``` #### Using docker