From 7eab1e09762d97e0e3bf5109729950cb96a88274 Mon Sep 17 00:00:00 2001 From: Calvin Huang Date: Wed, 27 Nov 2024 15:45:18 +0800 Subject: [PATCH] fixup! chore: follow the original dockerfile --- Dockerfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5c47eb27..b20e3968 100644 --- a/Dockerfile +++ b/Dockerfile @@ -112,12 +112,12 @@ FROM base as final # # Copy models from stage 2 to the final image COPY --from=downloader /comfyui/models /comfyui/models -RUN git clone https://github.com/kohya-ss/ControlNet-LLLite-ComfyUI.git custom_nodes/ControlNet-LLLite-ComfyUI && \ - wget -O custom_nodes/ControlNet-LLLite-ComfyUI/models/kohya_controllllite_xl_canny_anime.safetensors https://huggingface.co/kohya-ss/controlnet-lllite/resolve/main/controllllite_v01032064e_sdxl_canny_anime.safetensors?download=true && \ - wget -O custom_nodes/ControlNet-LLLite-ComfyUI/models/kohya_controllllite_xl_scribble_anime.safetensors https://huggingface.co/kohya-ss/controlnet-lllite/resolve/main/controllllite_v01032064e_sdxl_fake_scribble_anime.safetensors?download=true +RUN git clone https://github.com/kohya-ss/ControlNet-LLLite-ComfyUI.git /comfyui/custom_nodes/ControlNet-LLLite-ComfyUI && \ + wget -O /comfyui/custom_nodes/ControlNet-LLLite-ComfyUI/models/kohya_controllllite_xl_canny_anime.safetensors https://huggingface.co/kohya-ss/controlnet-lllite/resolve/main/controllllite_v01032064e_sdxl_canny_anime.safetensors?download=true && \ + wget -O /comfyui/custom_nodes/ControlNet-LLLite-ComfyUI/models/kohya_controllllite_xl_scribble_anime.safetensors https://huggingface.co/kohya-ss/controlnet-lllite/resolve/main/controllllite_v01032064e_sdxl_fake_scribble_anime.safetensors?download=true -RUN git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git custom_nodes/ComfyUI-Impact-Pack && \ - cd custom_nodes/ComfyUI-Impact-Pack && \ +RUN git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git /comfyui/custom_nodes/ComfyUI-Impact-Pack && \ + cd /comfyui/custom_nodes/ComfyUI-Impact-Pack && \ git clone https://github.com/ltdrdata/ComfyUI-Impact-Subpack impact_subpack && \ apt-get update && apt-get install -y libgl1 libglib2.0-0 libsm6 libxrender1 libxext6 && \ pip install -r requirements.txt && \ @@ -125,13 +125,13 @@ RUN git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git custom_nodes/C RUN git clone https://github.com/BadCafeCode/masquerade-nodes-comfyui.git custom_nodes/masquerade-nodes-comfyui -RUN git clone https://github.com/melMass/comfy_mtb.git custom_nodes/comfy_mtb && \ - cd custom_nodes/comfy_mtb && \ +RUN git clone https://github.com/melMass/comfy_mtb.git /comfyui/custom_nodes/comfy_mtb && \ + cd /comfyui/custom_nodes/comfy_mtb && \ pip install -r requirements.txt && \ python install.py -RUN git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git custom_nodes/ComfyUI-VideoHelperSuite && \ - cd custom_nodes/ComfyUI-VideoHelperSuite && \ +RUN git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git /comfyui/custom_nodes/ComfyUI-VideoHelperSuite && \ + cd /comfyui/custom_nodes/ComfyUI-VideoHelperSuite && \ pip install -r requirements.txt # Start container