Compare commits

6 Commits

Author SHA1 Message Date
derek b1ae60d36f 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
2026-04-24 20:18:44 -07:00
derek c80d24411a 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
2026-04-24 20:09:04 -07:00
derek c9f2e3bf2f Test sideload torchsde
Docker Build and Release Upload / build-rocm (push) Failing after 6m51s
Docker Build and Release Upload / build-uvicorn (push) Has been cancelled
Docker Build and Release Upload / build-cuda (push) Has been cancelled
2026-04-24 19:52:22 -07:00
derek d5de4893ec Fix packages
Docker Build and Release Upload / build-uvicorn (push) Successful in 4m49s
Docker Build and Release Upload / build-rocm (push) Failing after 6m40s
Docker Build and Release Upload / build-cuda (push) Has been cancelled
2026-04-24 19:11:20 -07:00
derek 0b68bc2db0 fix package
Docker Build and Release Upload / build-rocm (push) Failing after 20s
Docker Build and Release Upload / build-cuda (push) Has been cancelled
Docker Build and Release Upload / build-uvicorn (push) Has been cancelled
2026-04-24 19:01:07 -07:00
derek 6266b91c6d Fix builder
Docker Build and Release Upload / build-rocm (push) Failing after 1m1s
Docker Build and Release Upload / build-uvicorn (push) Has been cancelled
Docker Build and Release Upload / build-cuda (push) Has been cancelled
2026-04-24 18:56:53 -07:00
+10 -10
View File
@@ -5,20 +5,15 @@ FROM ubuntu:26.04
ENV PIP_BREAK_SYSTEM_PACKAGES=1
ENV PYTHONUNBUFFERED=1
# Copy compiled ROCm from builder
COPY --from=builder /opt/rocm /opt/rocm
RUN apt update -y && apt install -y --no-install-recommends \
rocm-dev \
rocm-libs \
rocminfo \
rocm \
python3-pip \
python3-dev \
python3-torch-rocm \
python3-torchaudio \
git \
libgl1 \
libglib2.0-0 \
libglib2.0-bin \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
@@ -26,9 +21,14 @@ WORKDIR /app
# Clone ComfyUI
RUN git clone https://github.com/comfyanonymous/ComfyUI.git .
# Install ComfyUI dependencies
RUN grep -vE 'torch|torchaudio|torchvision' requirements.txt > req_no_torch.txt \
&& pip3 install --no-cache-dir -r req_no_torch.txt
# Create sub dependancy
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
# 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