We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd27309 commit 5d44240Copy full SHA for 5d44240
1 file changed
Dockerfile
@@ -92,9 +92,13 @@ RUN sh -c "$(wget --progress=dot:giga -O- https://github.com/deluan/zsh-in-docke
92
-a "export PROMPT_COMMAND='history -a' && export HISTFILE=/commandhistory/.bash_history" \
93
-x
94
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
+ARG \
+ # renovate: datasource=npm depName=@anthropic-ai/claude-code
+ 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
102
103
# Copy and set up firewall script
104
COPY init-firewall.sh /usr/local/bin/
0 commit comments