From 342ef24bba89048c8f550468a4f846a76e421f35 Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 27 Dec 2025 23:46:57 +1300 Subject: [PATCH] Pre-download RIFE v4.7 model for frame interpolation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The RIFE model is small (~15MB) and required for the workflow. Pre-downloading avoids runtime download delays. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4de670a..5ff0e44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -108,6 +108,11 @@ RUN (cd ComfyUI-KJNodes && pip install -r requirements.txt || true) && \ (cd ComfyUI-Easy-Use && pip install -r requirements.txt || true) && \ rm -rf /root/.cache/pip /tmp/* +# Download RIFE model for frame interpolation +RUN mkdir -p /workspace/ComfyUI/custom_nodes/ComfyUI-Frame-Interpolation/ckpts && \ + wget -q -O /workspace/ComfyUI/custom_nodes/ComfyUI-Frame-Interpolation/ckpts/rife47.pth \ + https://github.com/hzwer/Practical-RIFE/releases/download/v4.7/rife47.pth + # Create directories and symlinks to network volume # RunPod mounts network volumes at /runpod-volume WORKDIR /workspace/ComfyUI