claude-init 1.0.25 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.devcontainer/Dockerfile
CHANGED
|
@@ -5,6 +5,7 @@ ENV TZ="$TZ"
|
|
|
5
5
|
|
|
6
6
|
ARG CLAUDE_CODE_VERSION=latest
|
|
7
7
|
ARG CODEX_VERSION=latest
|
|
8
|
+
ARG GEMINI_CLI_VERSION=latest
|
|
8
9
|
|
|
9
10
|
# Install basic development tools and iptables/ipset
|
|
10
11
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
@@ -83,10 +84,12 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
|
|
|
83
84
|
-a "export PROMPT_COMMAND='history -a' && export HISTFILE=/commandhistory/.bash_history" \
|
|
84
85
|
-x
|
|
85
86
|
|
|
86
|
-
# Install
|
|
87
|
+
# Install claude-code
|
|
87
88
|
RUN npm install -g @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION}
|
|
88
|
-
# Install
|
|
89
|
+
# Install codex
|
|
89
90
|
RUN npm install -g @openai/codex@${CODEX_VERSION}
|
|
91
|
+
# Install gemini-cli
|
|
92
|
+
RUN npm install -g @google/gemini-cli@${GEMINI_CLI_VERSION}
|
|
90
93
|
# Install spec-kit
|
|
91
94
|
RUN uv tool install specify-cli --from git+https://github.com/github/spec-kit.git
|
|
92
95
|
|