Spaces:
Paused
Paused
- 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 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
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 |
|