docker-hugo/Dockerfile

8 lines
217 B
Docker

FROM alpine:edge
RUN \
apk -U add wget && \
wget -O - "https://github.com/gohugoio/hugo/releases/download/v0.104.2/hugo_0.104.2_linux-amd64.tar.gz" | tar xvzf - -C /usr/bin
ENTRYPOINT [ "/usr/bin/hugo" ]