From c0a6f483cc398fd6351e0d8f251a7a206895654d Mon Sep 17 00:00:00 2001 From: hostwithquantum Date: Thu, 22 Feb 2024 00:02:24 +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 f99136d..92b47df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.21.4 AS build -ARG HUGO_VERSION=0.123.0 +ARG HUGO_VERSION=0.123.1 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