Spaces:
Running
Running
Upload Dockerfile
Browse files- Dockerfile +9 -4
Dockerfile
CHANGED
@@ -203,15 +203,20 @@ RUN echo "Downloading checkpoints..." && \
|
|
203 |
git clone https://github.com/crystian/ComfyUI-Crystools && \
|
204 |
git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes && \
|
205 |
git clone https://github.com/melMass/comfy_mtb.git
|
206 |
-
|
|
|
|
|
|
|
207 |
# Install custom nodes
|
208 |
RUN echo "Installing custom nodes..."
|
209 |
-
|
|
|
210 |
#RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15_v2.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
|
211 |
#RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/ && \
|
212 |
|
213 |
# AnimateDiff
|
214 |
-
RUN
|
|
|
215 |
|
216 |
# 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/
|
217 |
# 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,7 +230,7 @@ RUN echo "Downloading checkpoints..." && \
|
|
225 |
RUN echo "Done"
|
226 |
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
|
227 |
|
228 |
-
RUN mkdir /home/user/app/models/insightface
|
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 |
CMD ["python", "main.py", "--cpu", "--listen", "0.0.0.0", "--cpu", "--port", "7860", "--use-split-cross-attention", "--multi-user"]
|
|
|
203 |
git clone https://github.com/crystian/ComfyUI-Crystools && \
|
204 |
git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes && \
|
205 |
git clone https://github.com/melMass/comfy_mtb.git
|
206 |
+
|
207 |
+
#RUN cd custom_nodes && git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts.git
|
208 |
+
#RUN cd custom_nodes git clone https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes.git
|
209 |
+
|
210 |
# Install custom nodes
|
211 |
RUN echo "Installing custom nodes..."
|
212 |
+
|
213 |
+
|
214 |
#RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15_v2.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
|
215 |
#RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/ && \
|
216 |
|
217 |
# AnimateDiff
|
218 |
+
RUN wget -c https://huggingface.co/guoyww/animatediff/blob/main/v3_sd15_mm.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/models/
|
219 |
+
RUN wget -c https://huggingface.co/CiaraRowles/TemporalDiff/blob/main/temporaldiff-v1-animatediff.safetensors -P ./ComfyUI-AnimateDiff-Evolved/models/
|
220 |
|
221 |
# 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/
|
222 |
# 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/
|
|
|
230 |
RUN echo "Done"
|
231 |
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
|
232 |
|
233 |
+
RUN mkdir -p /home/user/app/models/insightface
|
234 |
|
235 |
#CMD ["python", "main.py", "--cpu", "--listen", "0.0.0.0", "--cpu", "--port", "7860", "--use-split-cross-attention", "--output-directory", "${USE_PERSISTENT_DATA:+/data/}"]
|
236 |
CMD ["python", "main.py", "--cpu", "--listen", "0.0.0.0", "--cpu", "--port", "7860", "--use-split-cross-attention", "--multi-user"]
|