From a496fe002fca89e23b97f9665ba43f1407f67057 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Tue, 1 Oct 2024 17:08:28 +0200 Subject: [PATCH] Add git to the hugo container again --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 1b7dadb..9074f64 100644 --- a/Containerfile +++ b/Containerfile @@ -12,7 +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 +RUN apt-get update && apt-get install git -y ENV HUGO_BIND=0.0.0.0 ENV HUGO_DESTINATION=public COPY --from=builder /out/hugo /usr/bin/hugo