Install git

Needed when setting `enableGitInfo = true` in Hugo configuration.
Produce less layers during Docker build
This commit is contained in:
Martin Westergaard Lassen 2018-06-06 09:18:45 +02:00 committed by GitHub
parent e99e3ab676
commit adec7af3ea
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