# Generated by `skaal build`. Do not edit manually.
FROM python:3.11-slim

RUN pip install --no-cache-dir uv

WORKDIR /app

COPY pyproject.toml .
RUN uv pip install --system --no-cache .

COPY . .

ENV PORT=8080
EXPOSE 8080

# gunicorn serves the WSGI app defined in main:application
CMD gunicorn --bind 0.0.0.0:$$PORT --workers 4 --timeout 120 main:application
