# 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"]