add queue system
Build and Push Containers / test (push) Successful in 9s
Build and Push Containers / build-and-push (push) Successful in 18s

This commit is contained in:
2026-08-01 21:42:38 -04:00
parent 2b544c21ae
commit cd480430b3
7 changed files with 224 additions and 5 deletions
+2 -1
View File
@@ -9,7 +9,8 @@ COPY pyproject.toml uv.lock ./
RUN uv sync --frozen --no-dev
COPY app.py ./
COPY gunicorn.conf.py ./
EXPOSE 5000
CMD ["uv", "run", "--no-sync", "gunicorn", "app:app", "--bind", "0.0.0.0:5000", "--workers", "2", "--timeout", "300"]
CMD ["uv", "run", "--no-sync", "gunicorn", "-c", "gunicorn.conf.py", "app:app"]