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.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.36
ARG COPILOT_VERSION=1.0.39
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.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.39.1
ARG GEMINI_CLI_VERSION=0.40.0
RUN npm install -g @google/gemini-cli@${GEMINI_CLI_VERSION} --retry 3

# Install gh CLI
Expand Down
Loading