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.codex
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 && rm -rf /var/lib/apt/lists/*

# Pre-install codex-acp and codex CLI globally
ARG CODEX_VERSION=0.120.0
ARG CODEX_VERSION=0.121.0
RUN npm install -g @zed-industries/codex-acp@0.9.5 @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 && rm -rf /var/lib/apt/lists/*

# Install GitHub Copilot CLI via npm (pinned version)
ARG COPILOT_VERSION=1.0.25
ARG COPILOT_VERSION=1.0.30
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.14-ee4b43a
ARG CURSOR_VERSION=2026.04.15-dccdccd
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 && rm -rf /var/lib/apt/lists/*

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

# Install gh CLI
Expand Down
Loading