blob: c7adb5e8b9b1df521d69d0a7427f600a9b6c26a5 [file] [log] [blame]
FROM debian:stretch
RUN apt-get update && apt-get install --quiet -y --no-install-recommends \
wget \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
ENV HUGO_VERSION=0.59.1
RUN wget -nv --show-progress --progress=bar:force:noscroll https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz
RUN tar -xzvf hugo_${HUGO_VERSION}_Linux-64bit.tar.gz
ENTRYPOINT ["/hugo"]