From ca8358b3ec5f43d10836fd7845ccc41ea01d396c Mon Sep 17 00:00:00 2001 From: reda Date: Fri, 8 Dec 2023 16:03:08 -0500 Subject: [PATCH] issue #15: remove debug mode --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 72d45aa..e0b2301 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,4 +13,4 @@ COPY ./app ./app COPY finesse-weights.json . # Use Gunicorn as the server, configuring it for the Flask app -ENTRYPOINT gunicorn --bind :$PORT --workers 1 --threads 8 --timeout 0 --forwarded-allow-ips="*" --log-level debug app:app +ENTRYPOINT gunicorn --bind :$PORT --workers 1 --threads 8 --timeout 0 --forwarded-allow-ips="*" app:app