34 lines
1.3 KiB
Docker
34 lines
1.3 KiB
Docker
# syntax=docker/dockerfile:1.4
|
|
FROM registry.fedoraproject.org/fedora-minimal:36
|
|
|
|
ENV HUGO_VERSION 0.104.3
|
|
|
|
ARG BUILD_DATE
|
|
ARG VCS_REF
|
|
|
|
LABEL description="Container image for building websites with Hugo static site generator."
|
|
|
|
LABEL org.label-schema.build-date=$BUILD_DATE \
|
|
org.label-schema.vcs-url="https://git.dotya.ml/wanderer/docker-fedora-hugo.git" \
|
|
org.label-schema.vcs-ref=$VCS_REF \
|
|
org.label-schema.license=GPL-3.0
|
|
|
|
ADD https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz /tmp/hugo.tar.gz
|
|
|
|
WORKDIR /tmp/
|
|
# DL3041 warning: Specify version with `dnf install -y <package>-<version>`.
|
|
# hadolint ignore=DL3041
|
|
RUN microdnf --refresh upgrade -y && microdnf install -y bsdtar git findutils \
|
|
--nodocs --setopt install_weak_deps=0 \
|
|
&& microdnf clean all -y; \
|
|
\
|
|
bsdtar xfv /tmp/hugo.tar.gz && rm -fv /tmp/hugo.tar.gz README.md LICENSE \
|
|
&& chmod +x /tmp/hugo \
|
|
&& mkdir -pv /usr/local/bin \
|
|
&& mv -v /tmp/hugo /usr/local/bin/ \
|
|
&& rm -rfv /tmp/* \
|
|
&& rm -rf /usr/share/zoneinfo/* ; rm -rf /usr/include/* ; \
|
|
find /. -name "*~" -type f -delete > /dev/null 2>&1 ;\
|
|
find /usr/share/terminfo/. ! -name "*xterm*" ! -name "*screen*" ! -name "*screen*" -type f -delete
|
|
WORKDIR /
|