From 283955f1f7071ee471ecf987f594bbff33b336a2 Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 27 Dec 2025 00:31:53 +1300 Subject: [PATCH] Add ComfyUI-WanVideoWrapper for WanVideo nodes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) 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) && \