Merge pull request #4 from mwl/master

Install git
This commit is contained in:
Chris Bargmann 2018-06-07 10:45:36 +02:00 committed by GitHub
commit 7061cf1f1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,11 +6,12 @@ ARG HUGO_VERSION
COPY ./drone-hugo.sh /bin/ COPY ./drone-hugo.sh /bin/
RUN apk update RUN apk update && \
RUN chmod +x bin/drone-hugo.sh apk --no-cache add git && \
RUN mkdir /temp/ chmod +x bin/drone-hugo.sh && \
RUN wget -O- https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz | tar xz -C /temp/ mkdir /temp/ && \
RUN mv /temp/hugo /bin/hugo wget -O- https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz | tar xz -C /temp/ && \
RUN rm -rf /temp mv /temp/hugo /bin/hugo && \
rm -rf /temp
ENTRYPOINT /bin/sh /bin/drone-hugo.sh ENTRYPOINT /bin/sh /bin/drone-hugo.sh