From 5bdad3daefd2958957aab12c2fbc7659a25890aa Mon Sep 17 00:00:00 2001 From: ITQ Date: Sat, 1 Mar 2025 16:24:06 +0300 Subject: [PATCH] increased timeout for gunicorn workers --- services/backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/backend/Dockerfile b/services/backend/Dockerfile index 4611598..2678475 100644 --- a/services/backend/Dockerfile +++ b/services/backend/Dockerfile @@ -39,4 +39,4 @@ EXPOSE 8080 HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --start-interval=2s --retries=3 \ CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:8080/api/health?format=json || exit 1 -CMD gunicorn config.wsgi --workers=8 -b 0.0.0.0:8080 --access-logfile - --error-logfile - +CMD gunicorn config.wsgi --workers=8 -b 0.0.0.0:8080 --access-logfile - --error-logfile - --timeout=600