demo / Dockerfile
aexyb's picture
Update Dockerfile
3812551 verified
Raw
History Blame Contribute Delete
532 Bytes
FROM yanwk/comfyui-boot:cpu
WORKDIR /app
# Install ComfyUI-Manager + GGUF nodes (via the built-in Manager)
RUN pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir ComfyUI-Manager
# Download your 1.3B GGUF pack (official CPU image expects models here)
RUN hf download samuelchristlie/Wan2.1-T2V-1.3B-GGUF \
--local-dir /root/ComfyUI/models
# Copy workflow (you can still load it in UI)
COPY workflow.json /data/
EXPOSE 8188
# Official CMD for this image
CMD ["bash","/runner-scripts/entrypoint.sh"]