container-images/myhugo/Dockerfile.old

8 lines
329 B
Docker
Raw Normal View History

FROM alpine:latest
RUN apk update && \
apk add --no-cache curl ca-certificates libc6-compat libstdc++ git && \
curl --location --output hugo.tar.gz https://github.com/gohugoio/hugo/releases/download/v0.111.3/hugo_extended_0.111.3_linux-amd64.tar.gz && \
tar -xf hugo.tar.gz -C /usr/bin/ hugo && \
rm hugo.tar.gz