From a1824526057a319fb76e0ae26d4a5016f56d057f Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Mon, 27 Apr 2026 17:47:03 -0700 Subject: [PATCH] fixes --- comfyui-rocm-dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/comfyui-rocm-dockerfile b/comfyui-rocm-dockerfile index cea5b35..92192d5 100644 --- a/comfyui-rocm-dockerfile +++ b/comfyui-rocm-dockerfile @@ -35,7 +35,8 @@ WORKDIR /builder RUN git clone --depth 1 https://github.com/pytorch/audio.git && \ cd audio && \ git submodule update --init --recursive && \ - CC=gcc CXX=g++ BUILD_ROCM=1 python3 setup.py install --break-system-packages && \ + export PIP_BREAK_SYSTEM_PACKAGES=1 && \ + CC=gcc CXX=g++ BUILD_ROCM=1 python3 setup.py install && \ cd .. && rm -rf audio FROM torch-audio AS runner