From 9e81578eb17b7169fd3b04878071d0e2606d1101 Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Wed, 9 Aug 2023 10:36:16 -0400 Subject: [PATCH] Disable git repo ownership check --- docker/cdash.docker | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/cdash.docker b/docker/cdash.docker index abae391fdb..76aa54871f 100644 --- a/docker/cdash.docker +++ b/docker/cdash.docker @@ -71,6 +71,9 @@ fi # Assign www-data ownership of apache2 configuration files RUN chown -R www-data:www-data /etc/apache2 +# Disable git repo ownership check system wide +RUN git config --system --add safe.directory '*' + # Run the rest of the commands as www-data USER www-data