From 86a14592feb7a8ac6f3487335b7d4cfea0087cb7 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 30a9a17d..4afa5c8e 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1.17 -FROM golang:1.24 AS builder +FROM golang:1.24.4 AS builder ARG VERSION ARG TARGETARCH