From 01de5baae18ef14f3c7601e68962c64d307e0737 Mon Sep 17 00:00:00 2001 From: paspo Date: Mon, 16 Dec 2024 15:17:43 +0100 Subject: [PATCH] temporary fix because of upstream --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5ce9704..170bea0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ RUN \ apk --no-cache upgrade && \ apk --no-cache add curl jq && \ LATEST_RELEASE=$(curl -L -s -H 'Accept: application/json' https://github.com/gohugoio/hugo/releases/latest | jq --raw-output ".tag_name" | sed 's/^v//' ) && \ + LATEST_RELEASE=0.139.4 && \ URL="https://github.com/gohugoio/hugo/releases/download/v${LATEST_RELEASE}/hugo_extended_${LATEST_RELEASE}_linux-${HUGO_ARCH}.tar.gz " && \ echo "Downloading: ${URL}" && \ wget "${URL}" -O - | tar xzv -C /tmp