fix: drop :latest tag from CI, make worker count configurable #116

Merged
cal merged 2 commits from fix/ci-tags-and-workers into main 2026-04-09 16:32:56 +00:00
Showing only changes of commit 6efba473a0 - Show all commits

View File

@ -31,4 +31,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
# Start uvicorn
ENV WEB_WORKERS=2
CMD uvicorn app.main:app --host 0.0.0.0 --port 80 --workers $WEB_WORKERS
CMD ["sh", "-c", "exec uvicorn app.main:app --host 0.0.0.0 --port 80 --workers $WEB_WORKERS"]