actions-hugo/Dockerfile
Shohei Ueda b8232e8a2c
Release v0.57.0 (#8)
* migrate: GitHub Actions beta v2 (HCL to YAML)

* add: Pull Request template

* upgrade: actions

* enhance: GitHub Actions config

* update: readme

* remove: patreon image
2019-08-15 20:26:15 +09:00

19 lines
715 B
Docker

FROM golang:1.12.7-buster
LABEL "com.github.actions.name"="Hugo action"
LABEL "com.github.actions.description"="GitHub Actions for Hugo extended and Hugo Modules"
LABEL "com.github.actions.icon"="package"
LABEL "com.github.actions.color"="yellow"
LABEL "repository"="https://github.com/peaceiris/actions-hugo"
LABEL "homepage"="https://github.com/peaceiris/actions-hugo"
LABEL "maintainer"="peaceiris"
ENV HUGO_VERSION='0.57.0'
ENV HUGO_NAME="hugo_extended_${HUGO_VERSION}_Linux-64bit"
ENV HUGO_URL="https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/${HUGO_NAME}.tar.gz"
RUN wget "${HUGO_URL}" && \
tar -zxvf "${HUGO_NAME}.tar.gz" && \
mv ./hugo /go/bin/
ENTRYPOINT [ "/go/bin/hugo" ]