From 9f844f00373bddd1a0a45d949c387772996e31d8 Mon Sep 17 00:00:00 2001 From: gitadmin Date: Mon, 22 Jun 2026 12:20:44 +0000 Subject: [PATCH] fix: GIT_TERMINAL_PROMPT=0 for Kaniko git clone --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5f7d1b4..d9e327f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ git libgl1 libglib2.0-0 libsm6 libxext6 libgomp1 \ && rm -rf /var/lib/apt/lists/* +ENV GIT_TERMINAL_PROMPT=0 + WORKDIR /app RUN git clone --depth 1 https://github.com/comfyanonymous/ComfyUI . \