From 050667ab8887180b74d217006b4890fb26d30649 Mon Sep 17 00:00:00 2001 From: Shivam Gutgutia Date: Mon, 2 Sep 2024 14:23:38 +0530 Subject: [PATCH] Fix: Problem with gunicorn --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c87b45..692795a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,5 @@ RUN pip3 install -r requirements.txt COPY . /app/ EXPOSE 5000 -CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"] +CMD ["python","app.py"]