From c8b0789d2452aed4bc44087f20883288ecc185bd Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Tue, 1 Oct 2024 17:03:17 +0200 Subject: [PATCH] Add git to the hugo container --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index 552fda8..1b7dadb 100644 --- a/Containerfile +++ b/Containerfile @@ -12,6 +12,7 @@ RUN mkdir /out && mv /tmp/hugo /out/hugo RUN chmod +x /out/hugo FROM registry.hub.docker.com/library/debian +RUN apt-get update && apt-get install git ENV HUGO_BIND=0.0.0.0 ENV HUGO_DESTINATION=public COPY --from=builder /out/hugo /usr/bin/hugo