Spaces:
Running
Running
Upload Dockerfile
Browse files- Dockerfile +11 -2
Dockerfile
CHANGED
@@ -134,7 +134,14 @@ RUN echo "Downloading checkpoints..." && \
|
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
@@ -156,5 +163,7 @@ RUN echo "Downloading checkpoints..." && \
|
|
156 |
CMD ["python", "main.py", "--listen", "0.0.0.0", "--cpu", "--port", "7860", "--use-split-cross-attention", "--output-directory", "${USE_PERSISTENT_DATA:+/data/}"]
|
157 |
|
158 |
|
159 |
-
|
|
|
|
|
160 |
|
|
|
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 |
+
|
138 |
+
RUN cd custom_nodes && git clone https://github.com/0xbitches/ComfyUI-LCM.git --depth 1
|
139 |
+
RUN cd custom_nodes && echo "#Plz don't delete this file, just edit it when neccessary." > ./custom_nodes/ComfyUI-LCM/config.yaml
|
140 |
+
RUN cd custom_nodes && echo 'ckpts_path: "./ckpts"' >> ./custom_nodes/ComfyUI-LCM/config.yaml
|
141 |
+
RUN cd custom_nodes && echo 'ops_backend: "taichi" #Either "taichi" or "cupy"' >> ./custom_nodes/ComfyUI-LCM/config.yaml
|
142 |
+
RUN cd custom_nodes && cd ./custom_nodes/ComfyUI-LCM/ && pip install -r requirements.txt
|
143 |
+
|
144 |
+
|
145 |
RUN cd custom_nodes && git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation.git --depth 1 && cd ComfyUI-Frame-Interpolation && python install.py
|
146 |
|
147 |
RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved
|
|
|
163 |
CMD ["python", "main.py", "--listen", "0.0.0.0", "--cpu", "--port", "7860", "--use-split-cross-attention", "--output-directory", "${USE_PERSISTENT_DATA:+/data/}"]
|
164 |
|
165 |
|
166 |
+
#Plz don't delete this file, just edit it when neccessary.
|
167 |
+
ckpts_path: "./ckpts"
|
168 |
+
ops_backend: "taichi" #Either "taichi" or "cupy"
|
169 |
|