Updates to get Docker working and adding Claude OAUTH token variable, and finish of the style guide mockup.

This commit is contained in:
sean-eskerium
2025-10-25 16:29:53 -04:00
parent 95791456cd
commit 4025f88ee9
8 changed files with 550 additions and 98 deletions

View File

@@ -59,6 +59,10 @@ RUN mkdir -p /repos /tmp/agent-work-orders && \
USER agentuser
RUN curl -fsSL https://claude.ai/install.sh | bash
# Configure git to use gh CLI for GitHub authentication
# This allows git clone to authenticate using GH_TOKEN environment variable
RUN git config --global credential.helper '!gh auth git-credential'
# Set environment variables
ENV PYTHONPATH="/app:$PYTHONPATH"
ENV PYTHONUNBUFFERED=1