From 8d0a90c20b7bb942633e18333aa4550ef4bf883e Mon Sep 17 00:00:00 2001 From: mbianchidev Date: Fri, 23 Aug 2024 18:59:13 +0200 Subject: [PATCH] Fix: updated golang version to avoid breaking the build Signed-off-by: mbianchidev --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3e761b36c3..1c95bbed12 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # change is that the Hugo version is now an overridable argument rather than a fixed # environment variable. -FROM docker.io/library/golang:1.20-alpine +FROM docker.io/library/golang:1.23.0-alpine3.20 LABEL maintainer="Luc Perkins " @@ -24,7 +24,7 @@ RUN mkdir $HOME/src && \ cd "hugo-${HUGO_VERSION}" && \ go install --tags extended -FROM docker.io/library/golang:1.20-alpine +FROM docker.io/library/golang:1.23.0-alpine3.20 RUN apk add --no-cache \ runuser \