docker-hugo/Dockerfile
Paolo Asperti aadbde3a34
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
hugo upgrade
2023-02-14 01:09:32 +01:00

10 lines
268 B
Docker

FROM alpine:edge
ARG HUGO_VERSION=0.110.0
RUN \
apk -U add wget && \
wget -O - "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz" | tar xvzf - -C /usr/bin
ENTRYPOINT [ "/usr/bin/hugo" ]