From 8527de60c97b5cec040ca55db7c5fcefac491e44 Mon Sep 17 00:00:00 2001 From: Maksim Kashapov <56276969+crazyrokr@users.noreply.github.com> Date: Wed, 10 Jun 2026 00:20:06 +0200 Subject: [PATCH] Add git to addon image --- gemini-cli/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gemini-cli/Dockerfile b/gemini-cli/Dockerfile index abc96ef..09f1ba9 100644 --- a/gemini-cli/Dockerfile +++ b/gemini-cli/Dockerfile @@ -1,6 +1,8 @@ FROM tgagor/gemini-cli:v0.45@sha256:8523945cd03885973abdb90fa9bf6232c523add8a5c6a6386b87a07e441f4a4e -RUN git clone https://github.com/cruzyjapan/Gemini-CLI-UI.git && \ +RUN apk add --no-cache git && \ + git clone https://github.com/cruzyjapan/Gemini-CLI-UI.git && \ + apk del --no-cache git && \ cd Gemini-CLI-UI && \ npm install && \ cp .env.example .env && \