From c9a6a5c0888bf66dd5ff9f14800aecadc20f0c82 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 15 Nov 2023 04:44:36 +0930 Subject: [PATCH] feat(git): '*' added as git safe.directory added so that testing can be done to confirm if this container is a workable solution for it being the AWX task container (control-plane) !117 #18 nofusscomputing/infrastructure/configuration-management/inventory-production!2 --- dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 4ac4ee4..6f817e6 100644 --- a/dockerfile +++ b/dockerfile @@ -76,7 +76,8 @@ COPY requirements.txt /tmp/requirements.txt COPY --from=receptor /usr/bin/receptor /usr/bin/receptor RUN pip install --upgrade pip; \ - mkdir -p /var/run/receptor + mkdir -p /var/run/receptor; \ + git config --global --add safe.directory '*' RUN pip install --index-url https://gitlab.com/api/v4/projects/45741845/packages/pypi/simple -r /tmp/requirements.txt