FROM python:3.13-slim-bookworm
ADD . /app
COPY --from=ghcr.io/astral-sh/uv:0.7.12 /uv /uvx /bin/
WORKDIR /app
RUN uv sync -v
# Place executables in the environment at the front of the path
ENV PATH="/app/.venv/bin:$PATH"
ENTRYPOINT [ "python3", "gabi.py" ]