FROM docker.io/alpine:3.19@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b LABEL maintainer="Robert Kaussow " LABEL org.opencontainers.image.authors="Robert Kaussow " LABEL org.opencontainers.image.title="Hugo static site generator" LABEL org.opencontainers.image.url="https://gitea.rknet.org/container/hugo" LABEL org.opencontainers.image.source="https://gitea.rknet.org/container/hugo" LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/container/hugo" ARG TARGETOS ARG TARGETARCH ARG TARGETVARIANT ARG HUGO_VERSION # renovate: datasource=github-releases depName=gohugoio/hugo ENV HUGO_VERSION="${HUGO_VERSION:-v0.125.7}" ENV HUGO_ENV=production COPY overlay/ / RUN apk add --update --no-cache --virtual .build-deps tar curl && \ apk add --update --no-cache gcompat libc6-compat libstdc++ busybox-suid bash bash-completion git tzdata make asciidoctor && \ echo "Installing hugo version '${HUGO_VERSION##v}' ..." && \ curl -SsfL "https://github.com/gohugoio/hugo/releases/download/${HUGO_VERSION}/hugo_extended_${HUGO_VERSION##v}_${TARGETOS}-${TARGETARCH}.tar.gz" | \ tar xz -C /usr/local/bin hugo && \ chmod 755 /usr/local/bin/hugo && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \ rm -rf /tmp/* && \ rm -rf /root/.cache/ USER root CMD ["help"] ENTRYPOINT ["/usr/local/bin/hugo"]