From bebf8aa323c26dd23b6209fc6e8b7a97dc77b659 Mon Sep 17 00:00:00 2001 From: Ariejan de Vroom Date: Wed, 24 Jan 2024 15:53:27 +0100 Subject: [PATCH] Bump dockerfile to use hugo 0.120.4 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6ed1ca2..8389f02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && \ apt-get install -y imagemagick ca-certificates git wget # Install Hugo -ENV HUGO_VERSION 0.111.2 +ENV HUGO_VERSION 0.120.4 RUN wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz && \ tar -xvf hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz && \ mv hugo /usr/local/bin/hugo && \