From 22b7337f442a4c646482ec11d760f5aebbdd1c69 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Tue, 1 Oct 2024 23:36:48 +0200 Subject: [PATCH] Add git to the hugo container again --- .containerignore | 3 --- Containerfile | 1 - 2 files changed, 4 deletions(-) diff --git a/.containerignore b/.containerignore index e88c8ff..b873a46 100644 --- a/.containerignore +++ b/.containerignore @@ -1,6 +1,3 @@ -.git/**/* -.git - node_modules/**/* node_modules diff --git a/Containerfile b/Containerfile index cdbe919..659df42 100644 --- a/Containerfile +++ b/Containerfile @@ -1,5 +1,4 @@ FROM zot.badhouseplants.net/badhouseplants/hugo-container:latest WORKDIR /src COPY . /src -COPY .git /src ENTRYPOINT ["hugo"]