docker-archlinux-hugo/Dockerfile
surtur 233e67b96f
All checks were successful
continuous-integration/drone/push Build is passing
bumped hugo version to 0.67.1
2020-03-16 02:14:53 +01:00

23 lines
734 B
Docker

FROM archlinux/base
ENV HUGO_VERSION 0.67.1
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 \
org.label-schema.vcs-url="https://github.com/wULLSnpAXbWZGYDYyhWTKKspEQoaYxXyhoisqHf/docker-archlinux-hugo.git" \
org.label-schema.vcs-ref=$VCS_REF
ADD https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz ./hugo.tar.gz
RUN pacman -Syu --noconfirm --needed git \
&& pacman -Scc \
&& rm -rfv /var/cache/pacman/* /var/lib/pacman/sync/*
RUN bsdtar xfv hugo.tar.gz && rm -v hugo.tar.gz README.md LICENSE \
&& mv -v hugo /usr/local/bin/