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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps ripgrep tini unzip && rm -rf /var/lib/apt/lists/*

# Install kiro-cli (auto-detect arch, copy binary directly)
ARG KIRO_CLI_VERSION=2.2.0
ARG KIRO_CLI_VERSION=2.4.0
RUN ARCH=$(dpkg --print-architecture) && \
if [ "$ARCH" = "arm64" ]; then URL="https://prod.download.cli.kiro.dev/stable/${KIRO_CLI_VERSION}/kirocli-aarch64-linux.zip"; \
else URL="https://prod.download.cli.kiro.dev/stable/${KIRO_CLI_VERSION}/kirocli-x86_64-linux.zip"; fi && \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.claude
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ RUN touch src/main.rs && cargo build --release

# --- Runtime stage ---
FROM node:22-bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps ripgrep tini && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps ripgrep tini bubblewrap socat && rm -rf /var/lib/apt/lists/*

# 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_AGENT_ACP_VERSION=0.29.2
ARG CLAUDE_CODE_VERSION=2.1.124
ARG CLAUDE_CODE_VERSION=2.1.146
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

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.codex
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates

# Pre-install codex-acp and codex CLI globally
ARG CODEX_ACP_VERSION=0.10.0
ARG CODEX_VERSION=0.128.0
ARG CODEX_VERSION=0.133.0
RUN npm install -g @zed-industries/codex-acp@${CODEX_ACP_VERSION} @openai/codex@${CODEX_VERSION} --retry 3

# Install gh CLI
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.copilot
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM node:22-bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps ripgrep tini && rm -rf /var/lib/apt/lists/*

# Install GitHub Copilot CLI via npm (pinned version)
ARG COPILOT_VERSION=1.0.40
ARG COPILOT_VERSION=1.0.51
RUN npm install -g @github/copilot@${COPILOT_VERSION} --retry 3

# Install gh CLI (for auth and token management)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cursor
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
# URL scheme scraped from Cursor's official downloads page — no apt/yum package exists.
# If Cursor changes this pattern, the build fails with curl 404. Monitor
# https://cursor.com/cli or https://docs.cursor.com/cli for version/URL updates.
ARG CURSOR_VERSION=2026.04.30-4edb302
ARG CURSOR_VERSION=2026.05.20-2b5dd59
RUN ARCH=$(dpkg --print-architecture) && \
if [ "$ARCH" = "arm64" ]; then ARCH=arm64; else ARCH=x64; fi && \
curl -fSL "https://downloads.cursor.com/lab/${CURSOR_VERSION}/linux/${ARCH}/agent-cli-package.tar.gz" \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.gemini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM node:22-bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps ripgrep tini && rm -rf /var/lib/apt/lists/*

# Install Gemini CLI (native ACP support via --acp)
ARG GEMINI_CLI_VERSION=0.40.1
ARG GEMINI_CLI_VERSION=0.42.0
RUN npm install -g @google/gemini-cli@${GEMINI_CLI_VERSION} --retry 3

# Install gh CLI
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.opencode
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ FROM node:22-bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps ripgrep tini && rm -rf /var/lib/apt/lists/*

# Install opencode
ARG OPENCODE_VERSION=1.14.31
ARG OPENCODE_VERSION=1.15.7
RUN npm install -g opencode-ai@${OPENCODE_VERSION} --retry 3

# Install gh CLI (matches Dockerfile.claude / Dockerfile.gemini / Dockerfile.codex)
Expand Down
Loading