More fixes
Docker Build and Release Upload / build-uvicorn (push) Successful in 4m34s
Docker Build and Release Upload / build-rocm (push) Successful in 54m21s
Docker Build and Release Upload / build-cuda (push) Successful in 1h12m26s

This commit is contained in:
2026-04-24 20:18:44 -07:00
parent c80d24411a
commit b1ae60d36f
+3 -3
View File
@@ -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