From a3339f0a4e3672e7eaef7f862bd5012bfdf169ee Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 06:09:40 +0000 Subject: [PATCH 1/2] chore(deps): update bump-dependencies --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" \ From e11cbee2699f8d2f91ca394abdee53132fd6b5a8 Mon Sep 17 00:00:00 2001 From: Joe Corall Date: Mon, 16 Feb 2026 08:19:30 -0500 Subject: [PATCH 2/2] Update docker-entrypoint.sh --- docker-entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) 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