You've already forked hugo-docker
mirror of
https://github.com/jakejarvis/hugo-docker.git
synced 2025-09-15 22:05:32 -04:00
initial commit
This commit is contained in:
24
Dockerfile
Normal file
24
Dockerfile
Normal file
@@ -0,0 +1,24 @@
|
||||
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"]
|
Reference in New Issue
Block a user