Spaces:
Runtime error
Runtime error
Upload Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
|
@@ -50,7 +50,9 @@ RUN pyenv install $PYTHON_VERSION && \
|
|
| 50 |
pip install torchsde && \
|
| 51 |
pip install ultralytics && \
|
| 52 |
pip install simpleeval && \
|
| 53 |
-
pip install gray2color
|
|
|
|
|
|
|
| 54 |
#pip install huggingface_hub["cli"] && \
|
| 55 |
#huggingface-cli delete-cache
|
| 56 |
|
|
@@ -190,7 +192,6 @@ RUN echo "Downloading checkpoints..." && \
|
|
| 190 |
git clone https://github.com/Gourieff/comfyui-reactor-node.git && \
|
| 191 |
git clone https://github.com/Nourepide/ComfyUI-Allor.git && \
|
| 192 |
git clone https://github.com/storyicon/comfyui_segment_anything.git
|
| 193 |
-
# git clone https://github.com/Niutonian/ComfyUi-NoodleWebcam.git
|
| 194 |
|
| 195 |
# Install custom nodes
|
| 196 |
RUN echo "Installing custom nodes..."
|
|
@@ -224,6 +225,7 @@ RUN echo "Downloading checkpoints..." && \
|
|
| 224 |
# 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/
|
| 225 |
|
| 226 |
RUN echo "Done"
|
|
|
|
| 227 |
|
| 228 |
CMD ["python", "main.py", "--cpu", "--listen", "0.0.0.0", "--cpu", "--port", "7860", "--use-split-cross-attention", "--output-directory", "${USE_PERSISTENT_DATA:+/data/}"]
|
| 229 |
|
|
|
|
| 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 |
|
|
|
|
| 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..."
|
|
|
|
| 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 |
|