From cc7bfaeb7c6510e9e99f874710f9a3826f3da7c8 Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Thu, 20 Feb 2020 12:39:31 -0500 Subject: [PATCH] Hugo v0.65.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index aff0d04..811da11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:latest -ENV HUGO_VERSION 0.64.1 +ENV HUGO_VERSION 0.65.0 # remove/comment the following line completely to build with vanilla Hugo: ENV HUGO_EXTENDED 1 @@ -17,7 +17,7 @@ LABEL maintainer="Jake Jarvis " # only install libc6-compat & libstdc++ if we're building extended Hugo # https://gitlab.com/yaegashi/hugo/commit/22f0d5cbd6114210ba7835468facbdee60609aa2 RUN apk update && \ - apk add --no-cache ca-certificates ${HUGO_EXTENDED:+libc6-compat libstdc++} && \ + apk add --no-cache ca-certificates git ${HUGO_EXTENDED:+libc6-compat libstdc++} && \ update-ca-certificates && \ wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_EXTENDED:+extended_}${HUGO_VERSION}_Linux-64bit.tar.gz && \ wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_checksums.txt && \