Add git to Dockerfile
authorJaymo Kang <jaymo@ninesai.com>
Fri, 14 Feb 2020 15:49:20 +0000 (07:49 -0800)
committerGitHub <noreply@github.com>
Fri, 14 Feb 2020 15:49:20 +0000 (16:49 +0100)
Needed for GitInfo.

Dockerfile

index 3ec305f7b7be69d78439aed60890e30bf33e7f51..0689f3c0e0797a4b37b0d7f2f10d726038adecd1 100755 (executable)
@@ -33,7 +33,7 @@ COPY --from=build /go/bin/hugo /usr/bin/hugo
 # libc6-compat & libstdc++ are required for extended SASS libraries
 # ca-certificates are required to fetch outside resources (like Twitter oEmbeds)
 RUN apk update && \
-    apk add --no-cache ca-certificates libc6-compat libstdc++
+    apk add --no-cache ca-certificates libc6-compat libstdc++ git
 
 VOLUME /site
 WORKDIR /site