From c0afc5b7ce91b08aec0ef9dbc1f2e6f628eb5e0f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2026 01:32:44 +0000 Subject: [PATCH] docker: bump the docker-base-images group across 1 directory with 2 updates Bumps the docker-base-images group with 2 updates in the / directory: alpine/git and distroless/cc-debian13. Updates `alpine/git` from `113d991` to `fac7bc2` Updates `distroless/cc-debian13` from `a017e74` to `bc0f6c3` --- updated-dependencies: - dependency-name: alpine/git dependency-version: v2.54.0 dependency-type: direct:production dependency-group: docker-base-images - dependency-name: distroless/cc-debian13 dependency-version: bc0f6c3bce611a0bb6784a63e4afc76816b341c9ac36d9322d7b9e5077d24d96 dependency-type: direct:production dependency-group: docker-base-images ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d1ac8d7..ef8cf89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ARG PYTHON_RUNTIME_TRIXIE_IMAGE=python-runtime:py3.14-glibc-trixie ARG PYTHON_RUNTIME_SLIM_IMAGE=python-runtime:py3.14-glibc-trixie-slim ARG PYTHON_RUNTIME_ALPINE_IMAGE=python-runtime:py3.14-musl-alpine -FROM alpine/git:v2.54.0@sha256:113d99116e236f93f0b1f53cd46dbda662cf1136d20dc9ae2834962226654d9f AS gtsam-source +FROM alpine/git:v2.54.0@sha256:fac7bc2c12aa52bff1c78a26359990e149954a60cdd5d6e20e7e009666c73e0a AS gtsam-source ARG GTSAM_VERSION WORKDIR /usr/src RUN git clone --quiet --depth 1 --branch "${GTSAM_VERSION}" https://github.com/borglab/gtsam.git @@ -209,7 +209,7 @@ RUN set -eu; \ find /rootfs/usr/local -type d -name '__pycache__' -prune -exec rm -rf {} +; \ find /rootfs/usr/local -type f -name '*.a' -delete -FROM gcr.io/distroless/cc-debian13@sha256:a017e74bd2a12d98342dbecd33d121d2b160415ed777573dc1808969e989d94d AS runtime-distroless +FROM gcr.io/distroless/cc-debian13@sha256:bc0f6c3bce611a0bb6784a63e4afc76816b341c9ac36d9322d7b9e5077d24d96 AS runtime-distroless ARG PYTHON_ABI ENV LD_LIBRARY_PATH=/usr/local/lib \ PYTHONDONTWRITEBYTECODE=1 \