2021-04-01 12:46:57 +02:00
|
|
|
FROM fedora:34
|
2020-06-07 06:28:44 +02:00
|
|
|
|
2021-04-20 14:58:54 +02:00
|
|
|
ENV HUGO_VERSION 0.82.1
|
2020-06-07 06:28:44 +02:00
|
|
|
|
|
|
|
ARG BUILD_DATE
|
|
|
|
ARG VCS_REF
|
|
|
|
|
|
|
|
LABEL description="Docker image for building websites with Hugo static site generator."
|
|
|
|
|
|
|
|
LABEL org.label-schema.build-date=$BUILD_DATE \
|
2020-11-26 15:17:47 +01:00
|
|
|
org.label-schema.vcs-url="https://git.dotya.ml/wanderer/docker-archlinux-hugo.git" \
|
2020-06-07 06:28:44 +02:00
|
|
|
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/
|
2021-01-14 01:30:21 +01:00
|
|
|
RUN dnf --refresh upgrade -y && dnf install -y git findutils
|
2021-04-01 12:46:57 +02:00
|
|
|
RUN tar xfv /tmp/hugo.tar.gz && rm -fv /tmp/hugo.tar.gz README.md LICENSE \
|
2020-06-07 06:28:44 +02:00
|
|
|
&& chmod +x /tmp/hugo \
|
|
|
|
&& mkdir -pv /usr/local/bin \
|
2021-01-14 01:30:21 +01:00
|
|
|
&& mv -v /tmp/hugo /usr/local/bin/ \
|
2021-04-01 12:46:57 +02:00
|
|
|
&& rm -rfv /tmp/*
|
2021-01-14 01:30:21 +01:00
|
|
|
RUN dnf autoremove -y -x findutils \
|
|
|
|
&& dnf clean all -y
|
2021-04-01 12:46:57 +02:00
|
|
|
RUN rm -rf /usr/share/zoneinfo/* ; rm -rf /usr/include/* ; \
|
2020-06-07 06:28:44 +02:00
|
|
|
find /. -name "*~" -type f -delete; \
|
2021-01-14 01:30:21 +01:00
|
|
|
find /usr/share/terminfo/. ! -name "*xterm*" ! -name "*screen*" ! -name "*screen*" -type f -delete
|
2020-06-07 06:28:44 +02:00
|
|
|
WORKDIR /
|