From 15182802ed4ee17ee3cf4da4644cee8329f662ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Wed, 26 Nov 2025 22:03:03 +0100 Subject: [PATCH] fix: arty.yml --- Dockerfile | 2 ++ arty.yml | 13 +------------ 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8ffff37..f17f2a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,9 +22,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libavformat-dev \ libavutil-dev \ libswscale-dev \ + libavdevice-dev \ bc \ jq \ openssh-server \ + pkg-config \ && apt-get clean && rm -rf /var/lib/apt/lists/* # Install Supervisor for process management diff --git a/arty.yml b/arty.yml index de177dd..e5d094f 100644 --- a/arty.yml +++ b/arty.yml @@ -59,18 +59,6 @@ references: into: $COMFYUI_ROOT/custom_nodes/ComfyUI-3D-Pack description: "3D asset generation" - - url: https://github.com/MixLabPro/comfyui-sound-lab.git - into: $COMFYUI_ROOT/custom_nodes/comfyui-sound-lab - description: "MusicGen and Stable Audio integration" - - - url: https://github.com/billwuhao/ComfyUI_DiffRhythm.git - into: $COMFYUI_ROOT/custom_nodes/ComfyUI_DiffRhythm - description: "DiffRhythm - Full-length song generation (up to 4m45s) with text/audio conditioning" - - - url: https://github.com/billwuhao/ComfyUI_ACE-Step.git - into: $COMFYUI_ROOT/custom_nodes/ComfyUI_ACE-Step - description: "ACE Step - State-of-the-art music generation with 19-language support, voice cloning, and superior coherence" - - url: https://github.com/ssitu/ComfyUI_UltimateSDUpscale.git into: $COMFYUI_ROOT/custom_nodes/ComfyUI_UltimateSDUpscale description: "Ultimate SD Upscale for high-quality image upscaling" @@ -154,6 +142,7 @@ scripts: for dir in */; do cd $dir python3 -m venv venv && source venv/bin/activate + pip install --upgrade pip if [ -f "requirements.txt" ]; then echo "" echo "📦 Installing ${dir%/} dependencies..."