From f048579dd6c533da796e714111b15091fb0475d9 Mon Sep 17 00:00:00 2001 From: Bauke Molenaar Date: Mon, 6 Oct 2025 11:23:17 +0200 Subject: [PATCH] modified: services/comfy/Dockerfile --- services/comfy/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/services/comfy/Dockerfile b/services/comfy/Dockerfile index a000e70..7413c87 100644 --- a/services/comfy/Dockerfile +++ b/services/comfy/Dockerfile @@ -1,6 +1,7 @@ FROM pytorch/pytorch:2.3.0-cuda12.1-cudnn8-runtime -ENV DEBIAN_FRONTEND=noninteractive PIP_PREFER_BINARY=1 +ENV DEBIAN_FRONTEND=noninteractive +ENV PIP_PREFER_BINARY=1 RUN apt-get update && apt-get install -y git && \ apt --fix-broken install -y && \ @@ -17,7 +18,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \ pip install -r requirements.txt WORKDIR /stable-diffusion/custom_nodes -RUN git clone https://github.com/ltdrdata/ComfyUI-Manager.git && \ +RUN git clone https://github.com/Comfy-Org/ComfyUI-Manager.git && \ cd ComfyUI-Manager && \ git checkout master && \ pip install -r requirements.txt