feat(builder): add ipadapter support - exposing pip install

This commit is contained in:
bennykok
2024-01-26 20:16:10 +08:00
parent 731bdf3982
commit 954de12d08
3 changed files with 12 additions and 2 deletions
@@ -65,6 +65,8 @@ if not deploy_test:
.run_commands("chmod +x /start.sh")
# Restore the custom nodes first
.pip_install(config["pip"])
.copy_local_file(f"{current_directory}/data/restore_snapshot.py", "/")
.copy_local_file(f"{current_directory}/data/snapshot.json", "/comfyui/custom_nodes/ComfyUI-Manager/startup-scripts/restore-snapshot.json")
.run_commands("python restore_snapshot.py")
+2 -1
View File
@@ -3,5 +3,6 @@ config = {
"deploy_test": "True",
"gpu": "T4",
"public_model_volume": "model-store",
"private_model_volume": "private-model-store"
"private_model_volume": "private-model-store",
"pip": []
}