hugoci/Dockerfile
2024-02-16 20:39:12 +01:00

9 lines
No EOL
414 B
Docker

FROM docker.io/alpine:latest
ARG HUGO_VERSION
RUN apk add --no-cache wget tar git openssh rsync pnpm
RUN wget https://github.com/gohugoio/hugo/releases/latest/download/hugo_extended_${HUGO_VERSION}_linux_amd64.tar.gz
RUN tar -xf hugo_extended_${HUGO_VERSION}_linux_amd64.tar.gz
RUN ls -lah
RUN chmod +x hugo_extended_${HUGO_VERSION}_linux_amd64
RUN mv hugo_extended_${HUGO_VERSION}_linux_amd64 /usr/local/bin/hugo