From e54cb97159120ae5a0253b96b43e05cf1fadf367 Mon Sep 17 00:00:00 2001 From: Mo8it Date: Sat, 19 Nov 2022 16:42:56 +0100 Subject: [PATCH] Fix gunicorn command --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 8f4dd03..7a62a4a 100644 --- a/Containerfile +++ b/Containerfile @@ -10,4 +10,4 @@ RUN pip3 install -r requirements.txt COPY . . -CMD ["gunicorn", "--bind", "0.0.0.0:80", "--workers", "5", "--log-file", "/volumes/logs/gunicorn.log", "'run:create_app()'"] \ No newline at end of file +CMD ["gunicorn", "--bind", "0.0.0.0:80", "--workers", "5", "--log-file", "/volumes/logs/gunicorn.log", "run:create_app()"] \ No newline at end of file