Upload Dockerfile
Browse files- Dockerfile +87 -52
Dockerfile
CHANGED
@@ -36,7 +36,23 @@ RUN pyenv install $PYTHON_VERSION && \
|
|
36 |
pip install --no-cache-dir --upgrade pip setuptools wheel && \
|
37 |
pip install --no-cache-dir \
|
38 |
datasets \
|
39 |
-
huggingface-hub "protobuf<4" "click<8.1"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
#pip install huggingface_hub["cli"] && \
|
41 |
#huggingface-cli delete-cache
|
42 |
|
@@ -53,39 +69,40 @@ RUN git clone https://github.com/comfyanonymous/ComfyUI.git . && \
|
|
53 |
# Checkpoints
|
54 |
RUN echo "Downloading checkpoints..." && \
|
55 |
# Kybalico Models
|
56 |
-
wget -c https://huggingface.co/Kybalico/CandyApple/resolve/main/candyApple_v12.safetensors -P ./models/checkpoints/ && \
|
57 |
-
wget -c https://huggingface.co/Kybalico/CalicoMix/resolve/main/calicoMix_v75.safetensors -P ./models/checkpoints/ && \
|
58 |
-
wget -c https://huggingface.co/Kybalico/CalicoMixDC/resolve/main/calicomix_dcV30.safetensors -P ./models/checkpoints/ && \
|
59 |
-
wget -c https://huggingface.co/Kybalico/AnmitsuMimimi/resolve/main/anmitsuMimimi_v10.safetensors -P ./models/checkpoints/ && \
|
60 |
-
|
61 |
# SD1.5
|
62 |
-
#
|
63 |
-
wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors -P ./models/checkpoints/ && \
|
64 |
-
wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors -P ./models/checkpoints/ && \
|
65 |
-
|
66 |
# SD2
|
67 |
-
wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1-base/resolve/main/v2-1_512-ema-pruned.safetensors -P ./models/checkpoints/ && \
|
68 |
-
wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1/resolve/main/v2-1_768-ema-pruned.safetensors -P ./models/checkpoints/ && \
|
|
|
69 |
|
70 |
# Some SD1.5 anime style
|
71 |
-
wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix2/AbyssOrangeMix2_hard.safetensors -P ./models/checkpoints/ && \
|
72 |
-
wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix3/AOM3A1_orangemixs.safetensors -P ./models/checkpoints/ && \
|
73 |
-
wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix3/AOM3A3_orangemixs.safetensors -P ./models/checkpoints/ && \
|
74 |
-
wget -c https://huggingface.co/Linaqruf/anything-v3.0/resolve/main/anything-v3-fp16-pruned.safetensors -P ./models/checkpoints/ && \
|
75 |
|
76 |
# Waifu Diffusion 1.5 (anime style SD2.x 768-v)
|
77 |
-
wget -c https://huggingface.co/waifu-diffusion/wd-1-5-beta2/resolve/main/checkpoints/wd-1-5-beta2-fp16.safetensors -P ./models/checkpoints/ && \
|
78 |
|
79 |
|
80 |
# unCLIP models
|
81 |
-
wget -c https://huggingface.co/comfyanonymous/illuminatiDiffusionV1_v11_unCLIP/resolve/main/illuminatiDiffusionV1_v11-unclip-h-fp16.safetensors -P ./models/checkpoints/ && \
|
82 |
-
wget -c https://huggingface.co/comfyanonymous/wd-1.5-beta2_unCLIP/resolve/main/wd-1-5-beta2-aesthetic-unclip-h-fp16.safetensors -P ./models/checkpoints/ && \
|
83 |
|
84 |
# TechnoByte Models
|
85 |
-
wget -c https://huggingface.co/TechnoByte/MilkyWonderland/resolve/main/milkyWonderland_v20.safetensors -P ./models/checkpoints/ && \
|
86 |
|
87 |
# VAE
|
88 |
-
wget -c https://huggingface.co/RedRayz/MyVAE/resolve/main/CleanVAE.safetensors -P ./models/vae/ && \
|
89 |
wget -c https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors -P ./models/vae/ && \
|
90 |
#wget -c https://huggingface.co/tuwonga/marblesh/resolve/main/marblesh.safetensors -P ./models/vae/ && \
|
91 |
#wget -c https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7/blob/main/LCM_Dreamshaper_v7_4k.safetensors -P ./models/vae/ && \
|
@@ -93,7 +110,7 @@ RUN echo "Downloading checkpoints..." && \
|
|
93 |
# ControlNet
|
94 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -P ./models/controlnet/ && \
|
95 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_shuffle_fp16.safetensors -P ./models/controlnet/ && \
|
96 |
-
#
|
97 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11f1p_sd15_depth_fp16.safetensors -P ./models/controlnet/ && \
|
98 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_inpaint_fp16.safetensors -P ./models/controlnet/ && \
|
99 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_lineart_fp16.safetensors -P ./models/controlnet/ && \
|
@@ -137,49 +154,66 @@ RUN echo "Downloading checkpoints..." && \
|
|
137 |
echo "Installing custom nodes..."
|
138 |
|
139 |
# ComfyUI Manager
|
140 |
-
RUN cd custom_nodes &&
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
|
151 |
# Install custom nodes
|
152 |
-
echo "Installing custom nodes..."
|
153 |
|
154 |
# Controlnet Preprocessor nodes by Fannovel16
|
155 |
# RUN git clone https://github.com/Fannovel16/comfy_controlnet_preprocessors && cd comfy_controlnet_preprocessors && python install.py --no_download_ckpts
|
156 |
-
# RUN cd custom_nodes && git clone https://github.com/
|
157 |
-
RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
|
158 |
|
159 |
-
RUN cd custom_nodes && git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes --depth 1
|
160 |
-
RUN cd custom_nodes && git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes --depth 1
|
161 |
-
# RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack --depth 1 && cd ComfyUI-Impact-Pack && python install.py
|
162 |
# RUN cd custom_nodes && git clone https://github.com/TechnoByteJS/comfy-aesthetic-nodes --depth 1 && cd comfy-aesthetic-nodes && pip install -r requirements.txt
|
163 |
-
|
164 |
-
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
|
165 |
-
|
166 |
# RUN cd custom_nodes && git clone https://github.com/0xbitches/ComfyUI-LCM.git --depth 1
|
167 |
# RUN cd custom_nodes && echo "#Plz don't delete this file, just edit it when neccessary." > ComfyUI-LCM/config.yaml
|
168 |
# RUN cd custom_nodes && echo 'ckpts_path: "./ckpts"' >> ComfyUI-LCM/config.yaml
|
169 |
# RUN cd custom_nodes && echo 'ops_backend: "taichi" #Either "taichi" or "cupy"' >> ComfyUI-LCM/config.yaml
|
170 |
# RUN cd custom_nodes && cd ComfyUI-LCM/ && pip install -r requirements.txt
|
171 |
|
172 |
-
RUN cd custom_nodes && git clone https://github.com/WASasquatch/PowerNoiseSuite.git
|
173 |
# RUN cd custom_nodes && git clone https://github.com/YMC-GitHub/ymc-node-suite-comfyui.git && cd ymc-node-suite-comfyui && pip install -r requirements.txt
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved
|
178 |
-
|
179 |
-
RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v14.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
|
180 |
-
RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
|
181 |
-
RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15_v2.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
|
182 |
-
RUN cd custom_nodes && wget -c https://huggingface.co/CiaraRowles/TemporalDiff/blob/main/temporaldiff-v1-animatediff.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
|
183 |
|
184 |
# RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_PanLeft.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
|
185 |
# RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_PanRight.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
|
@@ -191,7 +225,8 @@ RUN echo "Downloading checkpoints..." && \
|
|
191 |
# RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_ZoomOut.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
|
192 |
|
193 |
RUN echo "Done"
|
|
|
194 |
|
195 |
-
CMD ["python", "main.py", "--listen", "0.0.0.0", "--cpu", "--port", "7860", "--use-split-cross-attention", "--output-directory", "${USE_PERSISTENT_DATA:+/data/}"]
|
196 |
|
197 |
|
|
|
36 |
pip install --no-cache-dir --upgrade pip setuptools wheel && \
|
37 |
pip install --no-cache-dir \
|
38 |
datasets \
|
39 |
+
huggingface-hub "protobuf<4" "click<8.1" && \
|
40 |
+
pip install scikit-image && \
|
41 |
+
pip install numba && \
|
42 |
+
pip install dynamicprompts && \
|
43 |
+
pip install onnxruntime && \
|
44 |
+
pip install color-matcher && \
|
45 |
+
pip install piexif && \
|
46 |
+
pip install dynamicprompts && \
|
47 |
+
pip install lpips && \
|
48 |
+
pip install llama-cpp-python && \
|
49 |
+
pip install einops && \
|
50 |
+
pip install torchsde && \
|
51 |
+
pip install ultralytics && \
|
52 |
+
pip install simpleeval && \
|
53 |
+
pip install gray2color && \
|
54 |
+
pip install segment-anything && \
|
55 |
+
pip install typing-aliases
|
56 |
#pip install huggingface_hub["cli"] && \
|
57 |
#huggingface-cli delete-cache
|
58 |
|
|
|
69 |
# Checkpoints
|
70 |
RUN echo "Downloading checkpoints..." && \
|
71 |
# Kybalico Models
|
72 |
+
#wget -c https://huggingface.co/Kybalico/CandyApple/resolve/main/candyApple_v12.safetensors -P ./models/checkpoints/ && \
|
73 |
+
#wget -c https://huggingface.co/Kybalico/CalicoMix/resolve/main/calicoMix_v75.safetensors -P ./models/checkpoints/ && \
|
74 |
+
#wget -c https://huggingface.co/Kybalico/CalicoMixDC/resolve/main/calicomix_dcV30.safetensors -P ./models/checkpoints/ && \
|
75 |
+
#wget -c https://huggingface.co/Kybalico/AnmitsuMimimi/resolve/main/anmitsuMimimi_v10.safetensors -P ./models/checkpoints/ && \
|
76 |
+
wget -c https://civitai.com/api/download/models/128713 -P ./models/checkpoints/ && \
|
77 |
# SD1.5
|
78 |
+
#wget -c https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.ckpt -P ./models/checkpoints/ && \
|
79 |
+
#wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors -P ./models/checkpoints/ && \
|
80 |
+
#wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors -P ./models/checkpoints/ && \
|
81 |
+
#wget -c https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt/resolve/main/svd_xt.safetensors -P ./models/checkpoints/ && \
|
82 |
# SD2
|
83 |
+
#wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1-base/resolve/main/v2-1_512-ema-pruned.safetensors -P ./models/checkpoints/ && \
|
84 |
+
#wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1/resolve/main/v2-1_768-ema-pruned.safetensors -P ./models/checkpoints/ && \
|
85 |
+
|
86 |
|
87 |
# Some SD1.5 anime style
|
88 |
+
#wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix2/AbyssOrangeMix2_hard.safetensors -P ./models/checkpoints/ && \
|
89 |
+
#wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix3/AOM3A1_orangemixs.safetensors -P ./models/checkpoints/ && \
|
90 |
+
#wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix3/AOM3A3_orangemixs.safetensors -P ./models/checkpoints/ && \
|
91 |
+
#wget -c https://huggingface.co/Linaqruf/anything-v3.0/resolve/main/anything-v3-fp16-pruned.safetensors -P ./models/checkpoints/ && \
|
92 |
|
93 |
# Waifu Diffusion 1.5 (anime style SD2.x 768-v)
|
94 |
+
#wget -c https://huggingface.co/waifu-diffusion/wd-1-5-beta2/resolve/main/checkpoints/wd-1-5-beta2-fp16.safetensors -P ./models/checkpoints/ && \
|
95 |
|
96 |
|
97 |
# unCLIP models
|
98 |
+
#wget -c https://huggingface.co/comfyanonymous/illuminatiDiffusionV1_v11_unCLIP/resolve/main/illuminatiDiffusionV1_v11-unclip-h-fp16.safetensors -P ./models/checkpoints/ && \
|
99 |
+
#wget -c https://huggingface.co/comfyanonymous/wd-1.5-beta2_unCLIP/resolve/main/wd-1-5-beta2-aesthetic-unclip-h-fp16.safetensors -P ./models/checkpoints/ && \
|
100 |
|
101 |
# TechnoByte Models
|
102 |
+
#wget -c https://huggingface.co/TechnoByte/MilkyWonderland/resolve/main/milkyWonderland_v20.safetensors -P ./models/checkpoints/ && \
|
103 |
|
104 |
# VAE
|
105 |
+
#wget -c https://huggingface.co/RedRayz/MyVAE/resolve/main/CleanVAE.safetensors -P ./models/vae/ && \
|
106 |
wget -c https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors -P ./models/vae/ && \
|
107 |
#wget -c https://huggingface.co/tuwonga/marblesh/resolve/main/marblesh.safetensors -P ./models/vae/ && \
|
108 |
#wget -c https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7/blob/main/LCM_Dreamshaper_v7_4k.safetensors -P ./models/vae/ && \
|
|
|
110 |
# ControlNet
|
111 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -P ./models/controlnet/ && \
|
112 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_shuffle_fp16.safetensors -P ./models/controlnet/ && \
|
113 |
+
#wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_canny_fp16.safetensors -P ./models/controlnet/ && \
|
114 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11f1p_sd15_depth_fp16.safetensors -P ./models/controlnet/ && \
|
115 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_inpaint_fp16.safetensors -P ./models/controlnet/ && \
|
116 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_lineart_fp16.safetensors -P ./models/controlnet/ && \
|
|
|
154 |
echo "Installing custom nodes..."
|
155 |
|
156 |
# ComfyUI Manager
|
157 |
+
RUN cd custom_nodes && \
|
158 |
+
git clone https://github.com/ltdrdata/ComfyUI-Manager.git && \
|
159 |
+
git clone https://github.com/civitai/civitai_comfy_nodes.git && \
|
160 |
+
#Historia de vida, video2video, Dj, texto2video
|
161 |
+
git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git && \
|
162 |
+
git clone https://github.com/Fannovel16/comfyui_controlnet_aux.git && \
|
163 |
+
git clone https://github.com/FizzleDorf/ComfyUI_FizzNodes.git && \
|
164 |
+
git clone https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet.git && \
|
165 |
+
git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved.git && \
|
166 |
+
git clone https://github.com/adieyal/comfyui-dynamicprompts.git && \
|
167 |
+
git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts.git && \
|
168 |
+
git clone https://github.com/rgthree/rgthree-comfy.git && \
|
169 |
+
git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes.git && \
|
170 |
+
git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git && \
|
171 |
+
git clone https://github.com/mav-rik/facerestore_cf.git && \
|
172 |
+
git clone https://github.com/Stability-AI/stability-ComfyUI-nodes.git && \
|
173 |
+
git clone https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes.git && \
|
174 |
+
git clone https://github.com/giriss/comfy-image-saver.git && \
|
175 |
+
git clone https://github.com/Nuked88/ComfyUI-N-Nodes.git && \
|
176 |
+
git clone https://github.com/jags111/efficiency-nodes-comfyui.git && \
|
177 |
+
git clone https://github.com/bmad4ever/comfyui_bmad_nodes.git
|
178 |
+
|
179 |
+
RUN cd custom_nodes && \
|
180 |
+
git clone https://github.com/cubiq/ComfyUI_IPAdapter_plus.git && \
|
181 |
+
git clone https://github.com/chrisgoringe/cg-use-everywhere.git && \
|
182 |
+
git clone https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes.git && \
|
183 |
+
git clone https://github.com/WASasquatch/was-node-suite-comfyui.git && \
|
184 |
+
git clone https://github.com/theUpsider/ComfyUI-Logic.git && \
|
185 |
+
git clone https://github.com/evanspearman/ComfyMath.git && \
|
186 |
+
git clone https://github.com/WASasquatch/PowerNoiseSuite && \
|
187 |
+
git clone https://github.com/cubiq/ComfyUI_essentials.git && \
|
188 |
+
git clone https://github.com/mcmonkeyprojects/sd-dynamic-thresholding.git && \
|
189 |
+
git clone https://github.com/ltdrdata/ComfyUI-Inspire-Pack.git && \
|
190 |
+
git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation.git && \
|
191 |
+
git clone https://github.com/BlenderNeko/ComfyUI_ADV_CLIP_emb.git && \
|
192 |
+
git clone https://github.com/Gourieff/comfyui-reactor-node.git && \
|
193 |
+
git clone https://github.com/Nourepide/ComfyUI-Allor.git && \
|
194 |
+
git clone https://github.com/storyicon/comfyui_segment_anything.git
|
195 |
|
196 |
# Install custom nodes
|
197 |
+
RUN echo "Installing custom nodes..."
|
198 |
|
199 |
# Controlnet Preprocessor nodes by Fannovel16
|
200 |
# RUN git clone https://github.com/Fannovel16/comfy_controlnet_preprocessors && cd comfy_controlnet_preprocessors && python install.py --no_download_ckpts
|
201 |
+
# RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
|
|
|
202 |
|
203 |
+
# RUN cd custom_nodes && git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes --depth 1
|
204 |
+
# RUN cd custom_nodes && git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes --depth 1
|
|
|
205 |
# RUN cd custom_nodes && git clone https://github.com/TechnoByteJS/comfy-aesthetic-nodes --depth 1 && cd comfy-aesthetic-nodes && pip install -r requirements.txt
|
|
|
|
|
|
|
206 |
# RUN cd custom_nodes && git clone https://github.com/0xbitches/ComfyUI-LCM.git --depth 1
|
207 |
# RUN cd custom_nodes && echo "#Plz don't delete this file, just edit it when neccessary." > ComfyUI-LCM/config.yaml
|
208 |
# RUN cd custom_nodes && echo 'ckpts_path: "./ckpts"' >> ComfyUI-LCM/config.yaml
|
209 |
# RUN cd custom_nodes && echo 'ops_backend: "taichi" #Either "taichi" or "cupy"' >> ComfyUI-LCM/config.yaml
|
210 |
# RUN cd custom_nodes && cd ComfyUI-LCM/ && pip install -r requirements.txt
|
211 |
|
212 |
+
# RUN cd custom_nodes && git clone https://github.com/WASasquatch/PowerNoiseSuite.git
|
213 |
# RUN cd custom_nodes && git clone https://github.com/YMC-GitHub/ymc-node-suite-comfyui.git && cd ymc-node-suite-comfyui && pip install -r requirements.txt
|
214 |
+
|
215 |
+
RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15_v2.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
|
216 |
+
RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
|
218 |
# RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_PanLeft.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
|
219 |
# RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_PanRight.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
|
|
|
225 |
# RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_ZoomOut.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
|
226 |
|
227 |
RUN echo "Done"
|
228 |
+
RUN pip install torch==2.0.0+cu118 torchvision==0.15.1+cu118 torchaudio==2.0.1 --index-url https://download.pytorch.org/whl/cu118
|
229 |
|
230 |
+
CMD ["python", "main.py", "--cpu", "--listen", "0.0.0.0", "--cpu", "--port", "7860", "--use-split-cross-attention", "--output-directory", "${USE_PERSISTENT_DATA:+/data/}"]
|
231 |
|
232 |
|