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 && \