diff --git a/services/intel/Dockerfile b/services/intel/Dockerfile index bc99579..6d45ea6 100644 --- a/services/intel/Dockerfile +++ b/services/intel/Dockerfile @@ -20,10 +20,9 @@ RUN useradd -m "$DOCKER_USER" # Clone vladmandic's stable diffusion RUN \ git clone --depth 1 https://github.com/comfyanonymous/ComfyUI -WORKDIR /ComfyUI WORKDIR /ComfyUI/custom_nodes/ -RUN git clone --depth 1 https://github.com/ltdrdata/ComfyUI-Manager /ComfyUI/custom_nodes/comfyui-manager && \ +RUN git clone --depth 1 https://github.com/ltdrdata/ComfyUI-Manager /ComfyUI/custom_nodes/ComfyUI-Manager && \ git clone --depth 1 https://github.com/SeanScripts/ComfyUI-Unload-Model.git /ComfyUI/custom_nodes/ComfyUI-Unload-Model && \ git clone --depth 1 https://github.com/ssitu/ComfyUI_UltimateSDUpscale --recursive /ComfyUI/custom_nodes/ComfyUI_UltimateSDUpscale && \ git clone --depth 1 https://github.com/ltdrdata/ComfyUI-Impact-Pack /ComfyUI/custom_nodes/ComfyUI-Impact-Pack && \ @@ -36,7 +35,7 @@ RUN pip install --no-cache-dir --break-system-packages torch==2.10.0.dev20251116 # Install Python dependencies RUN pip install --no-cache-dir --break-system-packages -r requirements.txt && \ - pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/comfyui-manager/requirements.txt && \ + pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/ComfyUI-Manager/requirements.txt && \ pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/ComfyUI-Impact-Pack/requirements.txt && \ pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/ComfyUI-Impact-Subpack/requirements.txt && \ pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/comfyui-browser/requirements.txt && \