Spaces:
Sleeping
Sleeping
Add LCM & Efficiency nodes
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -60,8 +60,10 @@ RUN echo "Downloading checkpoints..." && \
|
|
60 |
wget -cq https://huggingface.co/TechnoByte/MilkyWonderland/resolve/main/milkyWonderland_v30.safetensors -P ./models/checkpoints/ && \
|
61 |
|
62 |
# VAE
|
63 |
-
rm -rf ./models/vae && \
|
64 |
wget -cq https://huggingface.co/RedRayz/MyVAE/resolve/main/CleanVAE.safetensors -P ./models/vae/ && \
|
|
|
|
|
|
|
65 |
|
66 |
# ControlNet
|
67 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15s2_lineart_anime_fp16.safetensors -P ./models/controlnet/ && \
|
@@ -81,6 +83,7 @@ RUN echo "Downloading checkpoints..." && \
|
|
81 |
# RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
|
82 |
|
83 |
RUN cd custom_nodes && git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes --depth 1
|
|
|
84 |
RUN cd custom_nodes && git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes --depth 1
|
85 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack --depth 1 && cd ComfyUI-Impact-Pack && python install.py
|
86 |
RUN cd custom_nodes && git clone https://github.com/crystian/ComfyUI-Crystools --depth 1 && pip install -r ./ComfyUI-Crystools/requirements.txt
|
|
|
60 |
wget -cq https://huggingface.co/TechnoByte/MilkyWonderland/resolve/main/milkyWonderland_v30.safetensors -P ./models/checkpoints/ && \
|
61 |
|
62 |
# VAE
|
|
|
63 |
wget -cq https://huggingface.co/RedRayz/MyVAE/resolve/main/CleanVAE.safetensors -P ./models/vae/ && \
|
64 |
+
|
65 |
+
# LCM
|
66 |
+
wget -P ./models/loras/ "https://huggingface.co/latent-consistency/lcm-lora-sdv1-5/resolve/main/pytorch_lora_weights.safetensors" -O lcm-lora-sdv1-5.safetensors
|
67 |
|
68 |
# ControlNet
|
69 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15s2_lineart_anime_fp16.safetensors -P ./models/controlnet/ && \
|
|
|
83 |
# RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
|
84 |
|
85 |
RUN cd custom_nodes && git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes --depth 1
|
86 |
+
RUN cd custom_nodes && git clone https://github.com/jags111/efficiency-nodes-comfyui --depth 1
|
87 |
RUN cd custom_nodes && git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes --depth 1
|
88 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack --depth 1 && cd ComfyUI-Impact-Pack && python install.py
|
89 |
RUN cd custom_nodes && git clone https://github.com/crystian/ComfyUI-Crystools --depth 1 && pip install -r ./ComfyUI-Crystools/requirements.txt
|