1
mirror of https://github.com/jakejarvis/hugo-docker.git synced 2025-07-01 14:36:42 -04:00

Compare commits

...

11 Commits

Author SHA1 Message Date
c6fc7fd110 Hugo v0.78.1 2020-11-05 09:26:03 -05:00
a649d18bcb Hugo v0.78.0 2020-11-03 08:43:43 -05:00
36f0af41e7 Hugo v0.77.0 (and Go 1.15) 2020-10-30 18:01:09 -04:00
230b5e857b Hugo v0.76.5 2020-10-15 13:25:02 -04:00
916ee35d62 Hugo v0.76.4 2020-10-12 12:12:53 -04:00
b3d62a43c5 Hugo v0.76.3 2020-10-12 12:12:19 -04:00
b460e6ff06 Hugo v0.76.2 2020-10-07 09:32:43 -04:00
e324a937f2 Hugo v0.76.1 2020-10-07 09:32:19 -04:00
03249b8201 Hugo v0.76.0 2020-10-07 09:31:38 -04:00
b2136f83bd explicitly install postcss, not just via postcss-cli (https://github.com/jakejarvis/hugo-build-action/issues/2) 2020-10-02 11:46:38 -04:00
1d0932a8be Hugo v0.75.1 2020-09-16 08:26:56 -04:00

View File

@ -1,9 +1,9 @@
# Hugo doesn't require Go to run, *except* if you're using Hugo Modules. It's
# much easier to install Node on the Go base image than vice-versa.
FROM golang:1.14-alpine
FROM golang:1.15-alpine
# the following version can be overridden at image build time with --build-arg
ARG HUGO_VERSION=0.75.0
ARG HUGO_VERSION=0.78.1
# remove/comment the following line completely to build with vanilla Hugo:
ARG HUGO_EXTENDED=1
@ -26,7 +26,7 @@ RUN apk update && \
ruby \
${HUGO_EXTENDED:+libc6-compat libstdc++} && \
update-ca-certificates && \
npm install --global postcss-cli autoprefixer @babel/core @babel/cli && \
npm install --global postcss postcss-cli autoprefixer @babel/core @babel/cli && \
pip3 install --upgrade Pygments==2.* && \
gem install asciidoctor && \
wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_EXTENDED:+extended_}${HUGO_VERSION}_Linux-64bit.tar.gz && \