Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaymo Kang <jaymo@ninesai.com>2020-02-14 18:49:20 +0300
committerGitHub <noreply@github.com>2020-02-14 18:49:20 +0300
commit75c3787fc254d933fa11e5c39d978bfa1a21a371 (patch)
treeec8e4d9ac60846fcac612b22580645bd2d77a629 /Dockerfile
parent9babb1f0c4fca048b0339f6ce3618f88d34e0457 (diff)
Add git to Dockerfile
Needed for GitInfo.
Diffstat (limited to 'Dockerfile')
-rwxr-xr-xDockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 3ec305f7b..0689f3c0e 100755
--- a/Dockerfile
+++ b/Dockerfile
@@ -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