From 5f012bfb842f80d9b4a5fd23eb51df10759ed769 Mon Sep 17 00:00:00 2001 From: Jonathan Visser Date: Mon, 10 Feb 2025 15:26:38 +0100 Subject: [PATCH] Add safe directory wildcard to dockerfiles --- ci/build/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/build/Dockerfile b/ci/build/Dockerfile index b146800..8620d27 100644 --- a/ci/build/Dockerfile +++ b/ci/build/Dockerfile @@ -128,6 +128,9 @@ RUN rm -rvf \ /var/lib/apt/lists/* \ && apt-get autoremove -y +# Allow hypernode-deploy to be ran in ordinary git repository locations +RUN git config --global --add safe.directory "*" + # Setup default command CMD ["hypernode-deploy"]