From b1ae60d36ff1f883c59e41df283b74f3af9c6df9 Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Fri, 24 Apr 2026 20:18:44 -0700 Subject: [PATCH] More fixes --- comfyui-rocm-dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/comfyui-rocm-dockerfile b/comfyui-rocm-dockerfile index 34afe1d..4e28d6b 100644 --- a/comfyui-rocm-dockerfile +++ b/comfyui-rocm-dockerfile @@ -22,13 +22,13 @@ WORKDIR /app RUN git clone https://github.com/comfyanonymous/ComfyUI.git . # Create sub dependancy -RUN grep -vE 'torch|torchsde|torchaudio|torchvision' requirements.txt > req_no_torch.txt +RUN grep -vE 'torch|nvidia|cuda|triton|kornia|spandrel' requirements.txt > req_no_torch.txt # Install non torch dependant requirements RUN pip3 install --no-cache-dir --break-system-packages -r req_no_torch.txt -# Install ComfyUI dependencies -RUN pip3 install --no-deps --break-system-packages torchsde +# Manually install the sensitive ones with --no-deps +RUN pip3 install --no-deps --break-system-packages torchsde kornia spandrel # Setup Manager WORKDIR /app/custom_nodes