1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 03:18:21 +02:00

Updated docker image to work with newer versions of git, closes #4117 (#4118)

This commit is contained in:
Tim Vink 2022-07-12 16:11:01 +02:00 committed by GitHub
parent 9590e5e234
commit fe3353a162
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,6 +75,9 @@ RUN \
-path "*/__pycache__/*" \ -path "*/__pycache__/*" \
-exec rm -f {} \; -exec rm -f {} \;
# Trust git directory, required for git >= 2.35.2
RUN git config --global --add safe.directory /docs
# Set working directory # Set working directory
WORKDIR /docs WORKDIR /docs