init
Build and Push Containers / test (push) Successful in 28s
Build and Push Containers / build-and-push (push) Successful in 3m32s

This commit is contained in:
2026-07-31 08:16:05 -04:00
commit 806b21d856
10 changed files with 980 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM python:3.13-slim
RUN pip install --no-cache-dir uv
WORKDIR /app
COPY pyproject.toml uv.lock ./
RUN uv sync --frozen --no-dev
COPY app.py ./
EXPOSE 5000
CMD ["uv", "run", "--no-sync", "gunicorn", "app:app", "--bind", "0.0.0.0:5000", "--workers", "2", "--timeout", "300"]