From a01fd48c6482ed6b6f4bfa2689dec0945aa1ec79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20J=C4=99dyk?= Date: Thu, 9 Jun 2022 20:58:50 +0200 Subject: [PATCH] fix port gunicorn 2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dd21049..0301b56 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,4 @@ COPY . . RUN pip3 install -r requirements.txt EXPOSE 5000/udp EXPOSE 5000/tcp -CMD ["gunicorn", "-b", "0.0.0.0:$PORT", "ayct_backend:create_app()", "--timeout", "120"] \ No newline at end of file +CMD gunicorn -b 0.0.0.0:$PORT ayct_backend:create_app() --timeout 120 \ No newline at end of file