# Development scaffold only. Before production, pin the base image by digest
# and install dependencies from a reviewed, hash-locked artifact set.
FROM python:3.12-slim

WORKDIR /app

COPY pyproject.toml agent.py main.py ./
RUN pip install --no-cache-dir .

EXPOSE 8080
CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]
