FROM python:3.12-slim

WORKDIR /app
COPY pyproject.toml .
COPY sec_engine/ sec_engine/
RUN pip install --no-cache-dir .

ENTRYPOINT ["sec-engine"]
