radames commited on
Commit
68c892c
1 Parent(s): 78875e2
Files changed (1) hide show
  1. Dockerfile +6 -6
Dockerfile CHANGED
@@ -131,12 +131,12 @@ RUN wget -c https://huggingface.co/sberbank-ai/Real-ESRGAN/resolve/main/RealESRG
131
  RUN echo "Done"
132
 
133
  # instal custom nodes
134
- RUN echo "Installing custom nodes..." && \
135
- # Controlnet Preprocessor nodes by Fannovel16
136
- cd custom_nodes && git clone https://github.com/Fannovel16/comfy_controlnet_preprocessors && cd comfy_controlnet_preprocessors && python install.py --no_download_ckpts && cd ../../ && \
137
- cd custom_nodes && git clone https://github.com/Fannovel16/comfyui_controlnet_aux && cd comfyui_controlnet_aux && pip install -r requirements.txt && cd ../../ && \
138
- cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt && cd ../../ && \
139
- echo "Done"
140
 
141
  CMD ["python", "main.py", "--listen", "0.0.0.0", "--port", "7860", "--output-directory", "${USE_PERSISTENT_DATA:+/data/}"]
142
 
 
131
  RUN echo "Done"
132
 
133
  # instal custom nodes
134
+ RUN echo "Installing custom nodes..."
135
+ # Controlnet Preprocessor nodes by Fannovel16
136
+ RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfy_controlnet_preprocessors && cd comfy_controlnet_preprocessors && python install.py --no_download_ckpts
137
+ RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfyui_controlnet_aux && cd comfyui_controlnet_aux && pip install -r requirements.txt
138
+ RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
139
+ RUN echo "Done"
140
 
141
  CMD ["python", "main.py", "--listen", "0.0.0.0", "--port", "7860", "--output-directory", "${USE_PERSISTENT_DATA:+/data/}"]
142