Skip to content

Commit fd7e32c

Browse files
committed
Update Dockerfile to include git_integration.py and adjust file permissions
- Added git_integration.py to the application files being copied into the Docker image. - Updated file permissions to include the new git_integration.py, ensuring proper access rights for all application files.
1 parent ce1a43f commit fd7e32c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/runners/claude-code-runner/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ RUN uv pip install --system -e .
2121
# Copy the application files with proper permissions
2222
COPY main.py /app/
2323
COPY auth_handler.py /app/
24+
COPY git_integration.py /app/
2425
COPY CLAUDE.md /app/
25-
RUN chmod 755 /app/main.py && chmod 644 /app/auth_handler.py && chmod 644 /app/CLAUDE.md
26+
RUN chmod 755 /app/main.py && chmod 644 /app/auth_handler.py && chmod 644 /app/git_integration.py && chmod 644 /app/CLAUDE.md
2627

2728
# Set OpenShift-compatible environment variables
2829
ENV PYTHONUNBUFFERED=1

0 commit comments

Comments
 (0)