Files
ComfyUI-ARM64-Docker/comfyui-rocm-dockerfile
T
derek 2c0f69d0f3
Docker Build and Release Upload / build-rocm (push) Failing after 12s
Split apart the base from the app
2026-05-12 19:30:03 -07:00

13 lines
381 B
Plaintext

# Use the rocm-base-aarch64-dockerfile
FROM ubuntu:26.04 AS reqs
WORKDIR /app
RUN git clone https://github.com/comfyanonymous/ComfyUI.git .
RUN pip3 install -r requirements.txt
# Setup Manager
WORKDIR /app/custom_nodes
RUN git clone https://github.com/Comfy-Org/ComfyUI-Manager.git
# Setup for run
WORKDIR /app
EXPOSE 8188
# Launch
CMD ["python3", "main.py", "--listen", "0.0.0.0"]