diff --git a/Dockerfile b/Dockerfile index e8d14de..90e81a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -84,6 +84,7 @@ WORKDIR /workspace/ComfyUI/custom_nodes RUN git clone https://github.com/ltdrdata/ComfyUI-Manager.git && \ git clone https://github.com/jnxmx/ComfyUI_HuggingFace_Downloader.git && \ git clone https://github.com/kijai/ComfyUI-KJNodes.git && \ + git clone https://github.com/kijai/ComfyUI-WanVideoWrapper.git && \ git clone https://github.com/Fannovel16/comfyui_controlnet_aux.git && \ git clone https://github.com/crystian/ComfyUI-Crystools.git && \ git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git && \ @@ -96,6 +97,7 @@ RUN git clone https://github.com/ltdrdata/ComfyUI-Manager.git && \ # Install custom node dependencies (single layer) RUN (cd ComfyUI-KJNodes && pip install -r requirements.txt || true) && \ + (cd ComfyUI-WanVideoWrapper && pip install -r requirements.txt || true) && \ (cd comfyui_controlnet_aux && pip install -r requirements.txt || true) && \ (cd ComfyUI-VideoHelperSuite && pip install -r requirements.txt || true) && \ (cd ComfyUI-GGUF && pip install -r requirements.txt || true) && \