test new route
Docker Build and Release Upload / build-uvicorn (push) Successful in 4m20s
Docker Build and Release Upload / build-rocm (push) Failing after 6m52s
Docker Build and Release Upload / build-cuda (push) Has been cancelled

This commit is contained in:
2026-04-24 20:09:04 -07:00
parent c9f2e3bf2f
commit c80d24411a
+7 -3
View File
@@ -21,10 +21,14 @@ WORKDIR /app
# Clone ComfyUI
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
# Install non torch dependant requirements
RUN pip3 install --no-cache-dir --break-system-packages -r req_no_torch.txt
# Install ComfyUI dependencies
RUN grep -vE 'torch|torchsde|torchaudio|torchvision' requirements.txt > req_no_torch.txt \
&& pip3 install --no-deps torchsde \
&& pip3 install --no-cache-dir -r req_no_torch.txt
RUN pip3 install --no-deps --break-system-packages torchsde
# Setup Manager
WORKDIR /app/custom_nodes