From 4759b8987129660dfeee0bad2e82e40fecc7aa64 Mon Sep 17 00:00:00 2001 From: Bobbie <126939298+escapade-mckv@users.noreply.github.com> Date: Thu, 24 Jul 2025 20:49:51 +0530 Subject: [PATCH] fix Dockerfile too many workers --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index eda348f0..456e8be2 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -15,7 +15,7 @@ COPY . . # Calculate optimal worker count based on 16 vCPUs # Using (2*CPU)+1 formula for CPU-bound applications -ENV WORKERS=33 +ENV WORKERS=7 ENV THREADS=2 ENV WORKER_CONNECTIONS=2000