FROM python:3.12-slim

WORKDIR /app
COPY . .

RUN pip install --no-cache-dir . "uvicorn[standard]>=0.30"

EXPOSE 8080
CMD ["uvicorn", "{module}.app:app.asgi", "--host", "0.0.0.0", "--port", "8080"]
