Skip to content
Merged
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: 3 additions & 2 deletions Dockerfile.claude
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
# Install claude-agent-acp adapter and Claude Code CLI.
# Without CLAUDE_CODE_EXECUTABLE the adapter uses its own bundled SDK cli.js,
# ignoring the globally installed claude-code binary (see #418).
ARG CLAUDE_CODE_VERSION=2.1.104
RUN npm install -g @agentclientprotocol/claude-agent-acp@0.25.0 @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION} --retry 3
ARG CLAUDE_AGENT_ACP_VERSION=0.29.2
ARG CLAUDE_CODE_VERSION=2.1.114
RUN npm install -g @agentclientprotocol/claude-agent-acp@${CLAUDE_AGENT_ACP_VERSION} @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION} --retry 3
ENV CLAUDE_CODE_EXECUTABLE=/usr/local/bin/claude

# Install gh CLI
Expand Down
Loading