Skip to content

Commit b7d4c2a

Browse files
authored
Refactor ARG declarations in Dockerfile
Updated ARG declarations for CLAUDE_CLI_VERSION and GEMINI_CLI_VERSION in Dockerfile.
1 parent f761127 commit b7d4c2a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ 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-
# renovate: datasource=npm depName=@anthropic-ai/claude-code
96-
ARG CLAUDE_CLI_VERSION=v2.0.60
95+
ARG \
96+
# renovate: datasource=npm depName=@anthropic-ai/claude-code
97+
CLAUDE_CLI_VERSION=v2.0.60 \
98+
# datasource=npm depName=@google/gemini-cli
99+
GEMINI_CLI_VERSION=v0.19.4
97100
RUN npm install -g @anthropic-ai/claude-code@$CLAUDE_CLI_VERSION
98-
99-
# datasource=npm depName=@google/gemini-cli
100-
ARG GEMINI_CLI_VERSION=v0.19.4
101101
RUN npm install -g @google/gemini-cli@$GEMINI_CLI_VERSION
102102

103103
# Copy and set up firewall script

0 commit comments

Comments
 (0)