From 96e56df65612040ccb0c6d8d51f2c993731388a8 Mon Sep 17 00:00:00 2001 From: ITQ Date: Fri, 21 Feb 2025 08:26:25 +0300 Subject: [PATCH] infra: scaled gunicorn workers to 8 --- solution/services/backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solution/services/backend/Dockerfile b/solution/services/backend/Dockerfile index b2812a5..b55f660 100644 --- a/solution/services/backend/Dockerfile +++ b/solution/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/health?format=json || exit 1 -CMD gunicorn config.wsgi --workers=4 -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 -