From b74e6a07f8d3b9fa8f8772bffac070b5b3476b12 Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Sun, 7 Apr 2024 11:11:47 -0400 Subject: [PATCH] hugo 0.122.0 is already using go v1.21 I don't think upgrading this go version will harm anything, it's a module / dependency issue in the docsy module or something that has made a backwards incompatible change somewhere (in v0.7.0) https://github.com/google/docsy/releases/tag/v0.7.0 Nb: says here "IMPORTANT - BREAKING CHANGES" Signed-off-by: Kingdon Barrett --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 63213849..57d52b29 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG HUGO_VERSION FROM fluxcd/website:hugo-${HUGO_VERSION}-extended -COPY --from=golang:1.19-alpine /usr/local/go/ /usr/local/go/ +COPY --from=golang:1.21-alpine /usr/local/go/ /usr/local/go/ ENV PATH="/usr/local/go/bin:${PATH}"