Pre-download RIFE v4.7 model for frame interpolation
Some checks failed
Build and Push Docker Image / build (push) Failing after 3m47s

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 <noreply@anthropic.com>
This commit is contained in:
Nick
2025-12-27 23:46:57 +13:00
parent aa95315e3f
commit 342ef24bba

View File

@@ -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