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/
RUN apk update
RUN chmod +x bin/drone-hugo.sh
RUN mkdir /temp/
RUN wget -O- https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz | tar xz -C /temp/
RUN mv /temp/hugo /bin/hugo
RUN rm -rf /temp
RUN apk update && \
apk --no-cache add git && \
chmod +x bin/drone-hugo.sh && \
mkdir /temp/ && \
wget -O- https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz | tar xz -C /temp/ && \
mv /temp/hugo /bin/hugo && \
rm -rf /temp
ENTRYPOINT /bin/sh /bin/drone-hugo.sh