FROM mirror.gcr.io/library/python:3.13-trixie RUN apt-get update -y && \ pip install uv WORKDIR /app COPY pyproject.toml uv.lock /app/ RUN uv sync --group docker-image-builder --no-install-project RUN git config --global --add safe.directory /app ENV VIRTUAL_ENV=/app/.venv ENV PATH="${VIRTUAL_ENV}/bin:$PATH"