From 60f34066a535017928cc4b66830b9319eff53e30 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 13 Mar 2024 15:23:53 -0700 Subject: [PATCH] (fix) default dockerfile use num_workers = 1 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 24c11c513..7193c76e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -64,4 +64,4 @@ ENTRYPOINT ["litellm"] # Append "--detailed_debug" to the end of CMD to view detailed debug logs # CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--run_gunicorn", "--detailed_debug"] -CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--run_gunicorn"] \ No newline at end of file +CMD ["--port", "4000", "--config", "./proxy_server_config.yaml", "--run_gunicorn", "--num_workers", "1"] \ No newline at end of file