From 3b780b45cf2e607416881b9457a624892953c68b Mon Sep 17 00:00:00 2001 From: hostwithquantum Date: Wed, 18 Dec 2024 00:03:20 +0000 Subject: [PATCH] chore: Update Dockerfile ARG HUGO_VERSION MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 034d141..6510c68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.21.4 AS build -ARG HUGO_VERSION=0.139.5 +ARG HUGO_VERSION=0.140.0 ADD https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb /tmp/hugo.deb RUN apt install -y /tmp/hugo.deb