From 91f5cf25c9bd9f7f78807d520448f1c1b5f346eb Mon Sep 17 00:00:00 2001 From: Becky Reamy Date: Tue, 29 Oct 2024 10:43:31 -0400 Subject: [PATCH] KPMP-5662: Increased timeout for gunicorn so we can download larger files --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d3b7c18..65ac9cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,4 @@ COPY app.py app.py COPY requirements.txt requirements.txt RUN pip3 install -r requirements.txt RUN pip3 install -U flask-cors -CMD ["gunicorn", "-b", ":5000", "app:app"] \ No newline at end of file +CMD ["gunicorn", "-b", ":5000", "--timeout", "300", "app:app"]