feat: Remove Docker action

This commit is contained in:
peaceiris 2019-09-15 16:48:15 +09:00
parent fee1e1cc48
commit 2905a7fc5b
2 changed files with 0 additions and 16 deletions

View file

@ -1,6 +0,0 @@
.git
.github
LICENSE
README.md
action.yml
images

View file

@ -1,10 +0,0 @@
FROM golang:1.13.0-buster
ENV HUGO_VERSION='0.58.2'
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" ]