Spaces:
Paused
Paused
fix
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -52,7 +52,7 @@ RUN git clone https://github.com/comfyanonymous/ComfyUI . && \
|
|
52 |
|
53 |
RUN echo "Downloading checkpoints..." && \
|
54 |
# SDXL
|
55 |
-
|
56 |
wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors -P ./models/checkpoints/ && \
|
57 |
wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0_0.9vae.safetensors -P ./models/checkpoints/ && \
|
58 |
|
@@ -134,6 +134,7 @@ RUN echo "Downloading checkpoints..." && \
|
|
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/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt && cd ../../ && \
|
138 |
echo "Done"
|
139 |
|
|
|
52 |
|
53 |
RUN echo "Downloading checkpoints..." && \
|
54 |
# SDXL
|
55 |
+
wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors -P ./models/checkpoints/ && \
|
56 |
wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors -P ./models/checkpoints/ && \
|
57 |
wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0_0.9vae.safetensors -P ./models/checkpoints/ && \
|
58 |
|
|
|
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 |
|