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