Docker: add git safe.directory exclusion Closes #3250
| @@ -37,6 +37,9 @@ RUN \ | ||
| 37 | 37 | echo "*** Convert line endings to Unix format ***" && \ |
| 38 | 38 | dos2unix "./docker-entrypoint.sh" |
| 39 | 39 | |
| 40 | +# Fix extension repos permissions | |
| 41 | +RUN git config --global --add safe.directory "*" | |
| 42 | + | |
| 40 | 43 | EXPOSE 8000 |
| 41 | 44 | |
| 42 | 45 | # Ensure proper handling of kernel signals |