From b1f23b4d9770e17484bcfc636ec4472670744e42 Mon Sep 17 00:00:00 2001 From: ldaval Date: Mon, 23 Jun 2025 16:35:12 +0200 Subject: [PATCH] Specify patch version for go docker image It allows renovate to find upadted of the go docker image, and propose a bump of patch version that can be a source of security updates like it is for go 1.21.4 --> 1.24.4 which fixes some not major CVE --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index c4c09a2d5..916175a85 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1.15 -FROM golang:1.24 AS builder +FROM golang:1.24.4 AS builder ARG VERSION ARG TARGETARCH