FROM python:3.12-slim
RUN pip install uv
WORKDIR /app
COPY . .
RUN uv sync
ENTRYPOINT ["uv", "run", "php-framework-detector"]
