# Generated by `skaal build --target local`. 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 . .

EXPOSE 8000

# gunicorn serves the WSGI app defined in main:application
CMD gunicorn --bind 0.0.0.0:8000 --workers 2 --timeout 120 main:application
