Initial commit

This commit is contained in:
Ian Keane 2026-09-14 13:45:57 -04:00
commit 6aa9bf85f3
10 changed files with 660 additions and 0 deletions

16
docker/Dockerfile Normal file
View file

@ -0,0 +1,16 @@
FROM python:3.12-slim
WORKDIR /app
# Install uv
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
# Copy dependency files and install — leverages Docker layer cache
COPY pyproject.toml ./
RUN uv sync --no-dev
COPY . .
EXPOSE 5000
CMD ["uv", "run", "flask", "--app", "wsgi:app", "run", "--host=0.0.0.0", "--port=5000"]