From c99065f6e05a784931b27f7ba9efe5f1e3d83482 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Thu, 23 Jul 2026 16:48:35 +0200 Subject: [PATCH] Increase workers and timeout --- cloud/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/Dockerfile b/cloud/Dockerfile index 9778aa0..ccc2a9f 100644 --- a/cloud/Dockerfile +++ b/cloud/Dockerfile @@ -18,4 +18,4 @@ RUN mkdir -p storage/dishPhotos EXPOSE 5000 # Use Gunicorn to run the application in production -CMD ["python", "-m", "gunicorn", "--bind", "0.0.0.0:5000", "app:app"] \ No newline at end of file +CMD ["python", "-m", "gunicorn", "--bind", "0.0.0.0:5000", "--workers", "2", "--threads", "4", "--timeout", "300", "app:app"] \ No newline at end of file