From d07459aed894fbb6b37a953bdaf78589d6e62c3f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 20:31:45 +0000 Subject: [PATCH] Update golang Docker tag to v1.27 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9a3a820..c98b7a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # --- Stage 1: Test Runner --- -FROM --platform=$BUILDPLATFORM golang:1.26-bookworm AS tester +FROM --platform=$BUILDPLATFORM golang:1.27-bookworm AS tester WORKDIR /app @@ -11,7 +11,7 @@ RUN go test -v ./... # --- Stage 2: Builder (Using a Debian-based Go image) --- # golang:1.22-bullseye is a good choice for a stable build environment -FROM --platform=$BUILDPLATFORM golang:1.26-bookworm AS builder +FROM --platform=$BUILDPLATFORM golang:1.27-bookworm AS builder # Copy source from the tester stage COPY --from=tester /app /app