From c153768ec04c3b6163825a032731e5dfe5c95082 Mon Sep 17 00:00:00 2001 From: "Heinel, Thomas" Date: Fri, 30 Jan 2026 12:36:50 +0100 Subject: [PATCH 1/2] Updates golang base image version Updates the golang base image to the latest patch version in the 1.25 series. This ensures that the build process benefits from the newest security patches and bug fixes provided by the golang team. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4649d28..e153068 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.25.5-bookworm AS builder +FROM golang:1.25.6-bookworm AS builder ENV COMMONDIR=/common \ IN_BUILDER=true \ From 810f7548d2f3e0b19ae87c34a29c1f6d450f7968 Mon Sep 17 00:00:00 2001 From: "Heinel, Thomas" Date: Fri, 6 Feb 2026 09:41:36 +0100 Subject: [PATCH 2/2] chore(deps): Update Go base image to 1.25.7 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e153068..dc0d485 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.25.6-bookworm AS builder +FROM golang:1.25.7-bookworm AS builder ENV COMMONDIR=/common \ IN_BUILDER=true \