diff --git a/Dockerfile b/Dockerfile index 4847c00..3fa9eb0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,11 +19,11 @@ ENV \ ARG \ # renovate: datasource=npm depName=@anthropic-ai/claude-code - CLAUDE_CLI_VERSION=2.1.38 \ + CLAUDE_CLI_VERSION=2.1.41 \ # renovate: datasource=npm depName=@google/gemini-cli - GEMINI_CLI_VERSION=0.28.0-preview.6 \ + GEMINI_CLI_VERSION=0.28.2 \ # renovate: datasource=npm depName=opencode-ai - OPENCODE_AI_VERSION=1.1.53 + OPENCODE_AI_VERSION=1.1.65 RUN npm install -g \ "@anthropic-ai/claude-code@$CLAUDE_CLI_VERSION" \ diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 9808ce4..499fe3a 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -15,5 +15,8 @@ ls -la if [ "$#" -eq 0 ]; then exec /bin/bash -l else + if [ "$@" = "claude" ]; then + claude install + fi exec "$@" fi