fix: update uvicorn command to use 10 workers for improved performance
Test / test (pull_request) Successful in 15s

This commit is contained in:
Artem Kashaev
2025-12-01 17:00:07 +05:00
parent e92d22baa5
commit 236cc4c50c
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ services:
build:
context: .
dockerfile: app/Dockerfile
command: uvicorn app.main:app --host 0.0.0.0 --port 8000
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --workers 10
env_file:
- .env
environment: