Spaces:
Running
Running
Upload 2 files
Browse files- Dockerfile +6 -1
- requirements.txt +4 -1
Dockerfile
CHANGED
@@ -62,7 +62,8 @@ RUN echo "Downloading checkpoints..." && \
|
|
62 |
wget -c https://huggingface.co/RedRayz/MyVAE/resolve/main/CleanVAE.safetensors -P ./models/vae/ && \
|
63 |
wget -c https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors -P ./models/vae/ && \
|
64 |
wget -c https://huggingface.co/tuwonga/marblesh/resolve/main/marblesh.safetensors -P ./models/vae/ && \
|
65 |
-
|
|
|
66 |
# ControlNet
|
67 |
wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -P ./models/controlnet/ && \
|
68 |
wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_shuffle_fp16.safetensors -P ./models/controlnet/ && \
|
@@ -131,6 +132,10 @@ RUN echo "Downloading checkpoints..." && \
|
|
131 |
RUN cd custom_nodes && git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes --depth 1
|
132 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack --depth 1 && cd ComfyUI-Impact-Pack && python install.py
|
133 |
RUN cd custom_nodes && git clone https://github.com/TechnoByteJS/comfy-aesthetic-nodes --depth 1 && cd comfy-aesthetic-nodes && pip install -r requirements.txt
|
|
|
|
|
|
|
|
|
134 |
|
135 |
RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved
|
136 |
|
|
|
62 |
wget -c https://huggingface.co/RedRayz/MyVAE/resolve/main/CleanVAE.safetensors -P ./models/vae/ && \
|
63 |
wget -c https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors -P ./models/vae/ && \
|
64 |
wget -c https://huggingface.co/tuwonga/marblesh/resolve/main/marblesh.safetensors -P ./models/vae/ && \
|
65 |
+
wget -c https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7/blob/main/LCM_Dreamshaper_v7_4k.safetensors -P ./models/vae/ && \
|
66 |
+
|
67 |
# ControlNet
|
68 |
wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -P ./models/controlnet/ && \
|
69 |
wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_shuffle_fp16.safetensors -P ./models/controlnet/ && \
|
|
|
132 |
RUN cd custom_nodes && git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes --depth 1
|
133 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack --depth 1 && cd ComfyUI-Impact-Pack && python install.py
|
134 |
RUN cd custom_nodes && git clone https://github.com/TechnoByteJS/comfy-aesthetic-nodes --depth 1 && cd comfy-aesthetic-nodes && pip install -r requirements.txt
|
135 |
+
|
136 |
+
RUN cd custom_nodes && git clone https://github.com/WASasquatch/was-node-suite-comfyui.git --depth 1 && cd was-node-suite-comfyui && pip install -r requirements.txt
|
137 |
+
RUN cd custom_nodes && git clone https://github.com/0xbitches/ComfyUI-LCM.git --depth 1 && wget -c https://github.com/r4yd3r/midias/blob/main/config.yaml -P ./custom_nodes/ComfyUI-LCM/ && cd ComfyUI-LCM && pip install -r requirements.txt
|
138 |
+
RUN cd custom_nodes && git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation.git --depth 1 && cd ComfyUI-Frame-Interpolation && python install.py
|
139 |
|
140 |
RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved
|
141 |
|
requirements.txt
CHANGED
@@ -8,4 +8,7 @@ python-sample-package
|
|
8 |
samplics
|
9 |
simpleeval
|
10 |
opencv-python
|
11 |
-
imageio-ffmpeg
|
|
|
|
|
|
|
|
8 |
samplics
|
9 |
simpleeval
|
10 |
opencv-python
|
11 |
+
imageio-ffmpeg
|
12 |
+
transformers
|
13 |
+
accelerate
|
14 |
+
taichi
|