From aab2188a5a3952dc56794f7fab58736e371f6bae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Aug 2026 00:43:55 +0000 Subject: [PATCH] Upgraded Hugo version to 0.165.0 --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 0d20a72..81e3cb8 100644 --- a/Containerfile +++ b/Containerfile @@ -1,8 +1,8 @@ FROM --platform=$BUILDPLATFORM node:alpine AS build ARG TARGETPLATFORM WORKDIR /docs -ADD https://github.com/gohugoio/hugo/releases/download/v0.164.0/hugo_0.164.0_Linux-64bit.tar.gz hugo.tar.gz -RUN echo "d9c8b17285ea4ec004d9f814273ea910f2051ce02c284993fd1f91ba455ae50d hugo.tar.gz" | sha256sum -c +ADD https://github.com/gohugoio/hugo/releases/download/v0.165.0/hugo_0.165.0_Linux-64bit.tar.gz hugo.tar.gz +RUN echo "5c3a37a5450b3e386e5b75a87a790fea2d04a796d75e171216c80ef48a32b432 hugo.tar.gz" | sha256sum -c RUN tar -zxvf hugo.tar.gz && mv hugo /usr/local/bin/hugo COPY ./ /docs RUN npm ci