mirror of
https://github.com/jakejarvis/hugo-docker.git
synced 2025-04-26 12:58:28 -04:00
25 lines
988 B
Docker
25 lines
988 B
Docker
FROM alpine:latest
|
|
|
|
ENV HUGO_VERSION 0.56.3
|
|
|
|
LABEL "com.github.actions.name"="Hugo Build"
|
|
LABEL "com.github.actions.description"="Hugo as an action. Includes all legacy versions."
|
|
LABEL "com.github.actions.icon"="check-square"
|
|
LABEL "com.github.actions.color"="yellow"
|
|
|
|
LABEL version=${HUGO_VERSION}
|
|
LABEL repository="https://github.com/jakejarvis/hugo-build-action"
|
|
LABEL homepage="https://jarv.is/"
|
|
LABEL maintainer="Jake Jarvis <jake@jarv.is>"
|
|
|
|
RUN wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz && \
|
|
wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_checksums.txt && \
|
|
grep hugo_${HUGO_VERSION}_Linux-64bit.tar.gz hugo_${HUGO_VERSION}_checksums.txt | sha256sum -c && \
|
|
tar xf hugo_${HUGO_VERSION}_Linux-64bit.tar.gz && \
|
|
mv ./hugo /usr/bin && \
|
|
chmod +x /usr/bin/hugo && \
|
|
rm -rf hugo_${HUGO_VERSION}_Linux-64bit
|
|
|
|
ENTRYPOINT ["hugo"]
|
|
#CMD ["--help"]
|