Skip to content

Commit 5d44240

Browse files
committed
Update installation of Claude CLI to version 2.0.60
And add renovate tags for auto updates
1 parent fd27309 commit 5d44240

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,13 @@ RUN sh -c "$(wget --progress=dot:giga -O- https://github.com/deluan/zsh-in-docke
9292
-a "export PROMPT_COMMAND='history -a' && export HISTFILE=/commandhistory/.bash_history" \
9393
-x
9494

95-
# Install Claude and Gemini
96-
RUN npm install -g @anthropic-ai/claude-code@v2.0.59
97-
RUN npm install -g @google/gemini-cli@v0.19.4
95+
ARG \
96+
# renovate: datasource=npm depName=@anthropic-ai/claude-code
97+
CLAUDE_CLI_VERSION=v2.0.60 \
98+
# renovate: datasource=npm depName=@google/gemini-cli
99+
GEMINI_CLI_VERSION=v0.19.4
100+
RUN npm install -g @anthropic-ai/claude-code@$CLAUDE_CLI_VERSION
101+
RUN npm install -g @google/gemini-cli@$GEMINI_CLI_VERSION
98102

99103
# Copy and set up firewall script
100104
COPY init-firewall.sh /usr/local/bin/

0 commit comments

Comments
 (0)