docker-hugo/Dockerfile
2022-10-02 16:55:45 +02:00

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" ]