1#=================
2# Setup git to access working directory across docker boundary.
3# This avoids the "fatal: detected dubious ownership in repository XYZ"
4# git error.
5
6RUN git config --global --add safe.directory '*'
7RUN git config --global protocol.file.allow always
8