Skip to content

Commit

Permalink
fixup! chore: follow the original dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin-Huang committed Nov 27, 2024
1 parent 3f9eef1 commit 7eab1e0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -112,26 +112,26 @@ FROM base as final
# # Copy models from stage 2 to the final image
COPY --from=downloader /comfyui/models /comfyui/models

RUN git clone https://github.com/kohya-ss/ControlNet-LLLite-ComfyUI.git custom_nodes/ControlNet-LLLite-ComfyUI && \
wget -O custom_nodes/ControlNet-LLLite-ComfyUI/models/kohya_controllllite_xl_canny_anime.safetensors https://huggingface.co/kohya-ss/controlnet-lllite/resolve/main/controllllite_v01032064e_sdxl_canny_anime.safetensors?download=true && \
wget -O custom_nodes/ControlNet-LLLite-ComfyUI/models/kohya_controllllite_xl_scribble_anime.safetensors https://huggingface.co/kohya-ss/controlnet-lllite/resolve/main/controllllite_v01032064e_sdxl_fake_scribble_anime.safetensors?download=true
RUN git clone https://github.com/kohya-ss/ControlNet-LLLite-ComfyUI.git /comfyui/custom_nodes/ControlNet-LLLite-ComfyUI && \
wget -O /comfyui/custom_nodes/ControlNet-LLLite-ComfyUI/models/kohya_controllllite_xl_canny_anime.safetensors https://huggingface.co/kohya-ss/controlnet-lllite/resolve/main/controllllite_v01032064e_sdxl_canny_anime.safetensors?download=true && \
wget -O /comfyui/custom_nodes/ControlNet-LLLite-ComfyUI/models/kohya_controllllite_xl_scribble_anime.safetensors https://huggingface.co/kohya-ss/controlnet-lllite/resolve/main/controllllite_v01032064e_sdxl_fake_scribble_anime.safetensors?download=true

RUN git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git custom_nodes/ComfyUI-Impact-Pack && \
cd custom_nodes/ComfyUI-Impact-Pack && \
RUN git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git /comfyui/custom_nodes/ComfyUI-Impact-Pack && \
cd /comfyui/custom_nodes/ComfyUI-Impact-Pack && \
git clone https://github.com/ltdrdata/ComfyUI-Impact-Subpack impact_subpack && \
apt-get update && apt-get install -y libgl1 libglib2.0-0 libsm6 libxrender1 libxext6 && \
pip install -r requirements.txt && \
python install-manual.py

RUN git clone https://github.com/BadCafeCode/masquerade-nodes-comfyui.git custom_nodes/masquerade-nodes-comfyui

RUN git clone https://github.com/melMass/comfy_mtb.git custom_nodes/comfy_mtb && \
cd custom_nodes/comfy_mtb && \
RUN git clone https://github.com/melMass/comfy_mtb.git /comfyui/custom_nodes/comfy_mtb && \
cd /comfyui/custom_nodes/comfy_mtb && \
pip install -r requirements.txt && \
python install.py

RUN git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git custom_nodes/ComfyUI-VideoHelperSuite && \
cd custom_nodes/ComfyUI-VideoHelperSuite && \
RUN git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git /comfyui/custom_nodes/ComfyUI-VideoHelperSuite && \
cd /comfyui/custom_nodes/ComfyUI-VideoHelperSuite && \
pip install -r requirements.txt

# Start container
Expand Down

0 comments on commit 7eab1e0

Please sign in to comment.