hugo/Containerfile.multiarch

37 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

2024-05-13 21:11:42 +02:00
FROM docker.io/alpine:3.19@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b
2021-05-06 22:31:39 +02:00
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
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"
2021-05-06 22:31:39 +02:00
ARG TARGETOS
ARG TARGETARCH
ARG TARGETVARIANT
ARG HUGO_VERSION
2021-05-06 22:31:39 +02:00
# renovate: datasource=github-releases depName=gohugoio/hugo
ENV HUGO_VERSION="${HUGO_VERSION:-v0.126.1}"
2021-05-06 22:31:39 +02:00
2021-05-06 22:40:23 +02:00
ENV HUGO_ENV=production
2021-05-06 22:31:39 +02:00
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 && \
2021-05-06 22:31:39 +02:00
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" | \
2021-05-06 22:31:39 +02:00
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"]