Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions components/runners/claude-code-runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ RUN dnf module reset -y nodejs && \
dnf install -y nodejs npm && \
dnf clean all

# Install Go
# Use Go 1.21 from AppStream (latest LTS version in UBI9)
RUN dnf install -y go-toolset && \
dnf clean all

# # Install Chromium for Playwright MCP (enables headless browser automation)
# # Required for self-development workflow where runner tests frontend changes locally
# # Using Playwright's bundled Chromium as it's self-contained and works on UBI9
Expand Down