Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 7 additions & 2 deletions Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,13 @@ RUN ARCH=$(dpkg --print-architecture) && \
rm /tmp/ast-grep.zip && \
chmod +x /usr/local/bin/sg

# Install agent CLIs used by headless engines in worker jobs
RUN npm install -g @anthropic-ai/claude-code @openai/codex@0.114.0 opencode-ai
# Install agent CLIs used by headless engines in worker jobs.
# All three are explicitly pinned so worker image rebuilds are reproducible —
# upstream CLI changes can introduce subtle behavioural drift in headless mode.
RUN npm install -g \
@anthropic-ai/claude-code@2.1.119 \
@openai/codex@0.125.0 \
opencode-ai@1.14.25

# Switch to non-root user for running workers.
# Claude Code CLI refuses --dangerously-skip-permissions when running as root.
Expand Down
Loading
Loading