I've read this here, and tried it: https://github.com/runpod-workers/worker-comfyui
But im still not sure if I did it correctly.
So I made a docker file based on one of the versions and add the things I need:
# start from a clean base image
FROM runpod/worker-comfyui:5.3.0-base
# install custom nodes using comfy-cli
RUN comfy-node-install comfyui_ipadapter_plus
RUN comfy-node-install ComfyUI_yanc
# download models using comfy-cli
RUN comfy model download --url https://civitai.com/api/download/models/789646 --relative-path models/checkpoints --filename realvisxlV50_v50Bakedvae.safetensors
Is this enough? also when I set it up on runpod, each run takes time, and it's not working all the time (queue mode), so I feel like I did something wrong
