Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +17 -1
Dockerfile
CHANGED
@@ -39,6 +39,7 @@ RUN pyenv install $PYTHON_VERSION && \
|
|
39 |
huggingface-hub "protobuf<4" "click<8.1"
|
40 |
|
41 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
42 |
|
43 |
# Set the working directory to /data if USE_PERSISTENT_DATA is set, otherwise set to $HOME/app
|
44 |
WORKDIR $HOME/app
|
@@ -104,6 +105,7 @@ RUN echo "Done"
|
|
104 |
|
105 |
# instal custom nodes
|
106 |
RUN echo "Installing custom nodes..."
|
|
|
107 |
|
108 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git
|
109 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack && cd ComfyUI-Impact-Pack && python install.py
|
@@ -119,11 +121,25 @@ RUN cd custom_nodes && git clone https://github.com/space-nuko/ComfyUI-OpenPose-
|
|
119 |
RUN cd custom_nodes && git clone https://github.com/twri/sdxl_prompt_styler
|
120 |
RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved
|
121 |
RUN cd custom_nodes && git clone https://github.com/AIrjen/OneButtonPrompt
|
|
|
|
|
|
|
122 |
RUN cd custom_nodes && git clone https://github.com/gokayfem/ComfyUI_VLM_nodes && cd ComfyUI_VLM_nodes && pip install -r requirements.txt
|
123 |
RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfyui_controlnet_aux && cd comfyui_controlnet_aux && pip install -r requirements.txt
|
124 |
RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
126 |
|
127 |
RUN echo "Done"
|
128 |
|
129 |
-
CMD ["python", "main.py", "--listen", "0.0.0.0", "--port", "7860", "--output-directory", "${USE_PERSISTENT_DATA:+/data/}"]
|
|
|
39 |
huggingface-hub "protobuf<4" "click<8.1"
|
40 |
|
41 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
42 |
+
# PyTorch installation with CUDA 12.1 support
|
43 |
|
44 |
# Set the working directory to /data if USE_PERSISTENT_DATA is set, otherwise set to $HOME/app
|
45 |
WORKDIR $HOME/app
|
|
|
105 |
|
106 |
# instal custom nodes
|
107 |
RUN echo "Installing custom nodes..."
|
108 |
+
RUN pip install -U onnxruntime-gpu
|
109 |
|
110 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git
|
111 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack && cd ComfyUI-Impact-Pack && python install.py
|
|
|
121 |
RUN cd custom_nodes && git clone https://github.com/twri/sdxl_prompt_styler
|
122 |
RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved
|
123 |
RUN cd custom_nodes && git clone https://github.com/AIrjen/OneButtonPrompt
|
124 |
+
|
125 |
+
RUN pip install -U torch torchvision torchaudio
|
126 |
+
|
127 |
RUN cd custom_nodes && git clone https://github.com/gokayfem/ComfyUI_VLM_nodes && cd ComfyUI_VLM_nodes && pip install -r requirements.txt
|
128 |
RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfyui_controlnet_aux && cd comfyui_controlnet_aux && pip install -r requirements.txt
|
129 |
RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
|
130 |
+
RUN cd custom_nodes && git clone https://github.com/jags111/efficiency-nodes-comfyui && cd efficiency-nodes-comfyui && pip install -r requirements.txt
|
131 |
+
RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite && cd ComfyUI-VideoHelperSuite && pip install -r requirements.txt
|
132 |
+
RUN cd custom_nodes && git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts
|
133 |
+
RUN cd custom_nodes && git clone https://github.com/WASasquatch/FreeU_Advanced
|
134 |
+
RUN cd custom_nodes && git clone https://github.com/city96/SD-Advanced-Noise
|
135 |
+
|
136 |
+
RUN cd custom_nodes && git clone https://github.com/sipherxyz/comfyui-art-venture && cd comfyui-art-venture && pip install -r requirements.txt
|
137 |
+
RUN cd custom_nodes && git clone https://github.com/evanspearman/ComfyMath && cd ComfyMath && pip install -r requirements.txt
|
138 |
+
RUN cd custom_nodes && git clone https://github.com/Gourieff/comfyui-reactor-node && cd comfyui-reactor-node && pip install -r requirements.txt
|
139 |
+
RUN cd custom_nodes && git clone https://github.com/rgthree/rgthree-comfy && cd rgthree-comfy && pip install -r requirements.txt
|
140 |
+
RUN cd custom_nodes && git clone https://github.com/giriss/comfy-image-saver && cd comfy-image-saver && pip install -r requirements.txt
|
141 |
|
142 |
|
143 |
RUN echo "Done"
|
144 |
|
145 |
+
CMD ["python", "main.py", "--listen", "0.0.0.0", "--port", "7860", "--output-directory", "${USE_PERSISTENT_DATA:+/data/}"]
|