From 9a91d8fbad7b090a5aca6da51900f9db388136a4 Mon Sep 17 00:00:00 2001 From: Joshua Vial Date: Sat, 9 Sep 2023 12:07:11 +1200 Subject: [PATCH] set git config safe dir in benchmark docker --- benchmark/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/benchmark/Dockerfile b/benchmark/Dockerfile index 419167e01..ac552e877 100644 --- a/benchmark/Dockerfile +++ b/benchmark/Dockerfile @@ -3,5 +3,6 @@ RUN apt-get update && apt-get install -y less git COPY requirements.txt /aider/requirements.txt RUN pip install lox typer pandas matplotlib imgcat aider-chat RUN pip install --upgrade pip && pip install -r /aider/requirements.txt +RUN git config --global --add safe.directory /aider WORKDIR /aider