fix: configure git to trust all directories in Docker

Co-Authored-By: Khaushik-keygraph <khaushik.contractor@keygraph.io>
This commit is contained in:
ajmallesh
2025-12-15 10:34:25 -08:00
parent fba798ac49
commit 906d464abd

View File

@@ -130,6 +130,9 @@ RUN mkdir -p /app/sessions /app/deliverables /app/repos && \
# Switch to non-root user
USER pentest
# Configure Git to trust all directories
RUN git config --global --add safe.directory '*'
# Set environment variables
ENV NODE_ENV=production
ENV PATH="/usr/local/bin:$PATH"