From 4bc2fcee82b3ba3969bc7fe52ef3ba7d28a6c2ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 16:30:29 +0000 Subject: [PATCH] chore(deps): Bump the docker-minor-and-patch group across 1 directory with 2 updates Bumps the docker-minor-and-patch group with 2 updates in the /docker directory: golang and alpine. Updates `golang` from 1.25.12-alpine to 1.26.5-alpine Updates `alpine` from 3.21 to 3.24 --- updated-dependencies: - dependency-name: alpine dependency-version: '3.24' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-minor-and-patch - dependency-name: golang dependency-version: 1.26.5-alpine dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-minor-and-patch ... Signed-off-by: dependabot[bot] --- docker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index dab008b..463bc80 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -23,7 +23,7 @@ RUN npm run build # Backend build stage — also pinned to $BUILDPLATFORM. Go cross-compiles # natively (CGO disabled), so we build on the fast host arch and emit a binary # for the requested $TARGETARCH. TARGETOS/TARGETARCH are provided by Buildx. -FROM --platform=$BUILDPLATFORM golang:1.25.12-alpine AS backend-build +FROM --platform=$BUILDPLATFORM golang:1.26.5-alpine AS backend-build WORKDIR /app @@ -41,7 +41,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -a -o server ./ # target architecture on the build host. Pinned to exact versions for # reproducible builds. No QEMU emulation needed: the binaries are static and # architecture-specific, resolved via $TARGETARCH provided by Buildx. -FROM alpine:3.21 AS backup-tools +FROM alpine:3.24 AS backup-tools # Pinned versions — bump here when upgrading. # Note: use RESTIC_VER / RCLONE_VER (not RESTIC_VERSION / RCLONE_VERSION) to @@ -98,7 +98,7 @@ RUN set -eu; \ rm /tmp/rclone.zip # Runtime stage -FROM alpine:3.21 +FROM alpine:3.24 WORKDIR /app