1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-01-09 19:32:57 -05:00

bump Hugo to v0.65.1

[skip ci]
This commit is contained in:
2020-02-20 13:23:33 -05:00
parent 6df725b6d4
commit 3595cd856b
4 changed files with 23 additions and 23 deletions

View File

@@ -5,14 +5,14 @@
FROM alpine:latest
ENV HUGO_VERSION 0.64.1
ENV HUGO_VERSION 0.65.1
# remove/comment the following line completely to build with vanilla Hugo:
ENV HUGO_EXTENDED 1
# 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 nodejs ${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 && \