From 34f29bb138568f05d32952150de7dd39f91431ff Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Thu, 17 Jul 2025 03:51:10 +0000 Subject: [PATCH] Add in ComfyUI-Manager --- dockerfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 57102d3..6b6cd85 100644 --- a/dockerfile +++ b/dockerfile @@ -6,6 +6,8 @@ WORKDIR /app # Get release version from https://github.com/comfyanonymous/ComfyUI/releases ARG ComfyUI_Release=0.3.43 +RUN pip install imageio controlnet_aux + RUN wget https://github.com/comfyanonymous/ComfyUI/archive/refs/tags/v${ComfyUI_Release}.tar.gz && \ tar xzf v${ComfyUI_Release}.tar.gz && \ rm v${ComfyUI_Release}.tar.gz && \ @@ -16,10 +18,15 @@ WORKDIR /app/comfyui RUN ln -sf /usr/bin/python3 /usr/bin/python && \ ln -sf /usr/bin/pip3 /usr/bin/pip -#RUN grep -vE "^(torch|#)" requirements.txt | sed 's/==.*//' | sed 's/>=.*//' | sed 's/~=.*//' | xargs pip install RUN grep -vE "^(torch|#)" requirements.txt | xargs pip install && \ pip install torchsde +WORKDIR /app/comfyui/custom_nodes + +RUN git clone https://github.com/Comfy-Org/ComfyUI-Manager.git + +WORKDIR /app/comfyui + EXPOSE 8188 CMD ["python", "main.py", "--listen", "0.0.0.0"]