This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
source /venv/main/bin/activate | |
COMFYUI_DIR=${WORKSPACE}/ComfyUI | |
# Packages are installed after nodes so we can fix them... | |
APT_PACKAGES=( | |
#"package-1" | |
#"package-2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use the official Vast.ai image as the starting point | |
FROM vastai/comfy:cuda-12.8-auto | |
# Override the broken startup command. | |
# This downloads and executes the default ComfyUI provisioning script. | |
ENTRYPOINT ["/bin/bash", "-c", "wget -O /tmp/start.sh ${PROVISIONING_SCRIPT} && bash /tmp/start.sh"] |