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
@@ -21,4 +21,4 @@ COPY --from=builder /opt/app/.venv /opt/app/.venv
COPY app ./app
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--workers", "10"]