Merge pull request #1063 from basecamp/safe-directory-fix-1.9

Safe directory fix 1.9
This commit is contained in:
Donal McBreen
2024-10-06 18:55:56 +01:00
committed by GitHub

View File

@@ -33,7 +33,7 @@ WORKDIR /workdir
# Tell git it's safe to access /workdir/.git even if
# the directory is owned by a different user
RUN git config --global --add safe.directory /workdir
RUN git config --global --add safe.directory '*'
# Set the entrypoint to run the installed binary in /workdir
# Example: docker run -it -v "$PWD:/workdir" kamal init