Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM nvidia/cuda:12.1.
|
2 |
|
3 |
ENV DEBIAN_FRONTEND=noninteractive \
|
4 |
TZ=America/Los_Angeles
|
@@ -47,7 +47,7 @@ WORKDIR $HOME/app
|
|
47 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
48 |
|
49 |
RUN git clone https://github.com/comfyanonymous/ComfyUI . && git checkout c6951548cfec64c28082e6560c69c59e32729c9c && \
|
50 |
-
pip install xformers!=0.0.
|
51 |
|
52 |
# instal custom nodes
|
53 |
RUN echo "Installing custom nodes..."
|
@@ -90,6 +90,7 @@ RUN cd custom_nodes && git clone https://github.com/kohya-ss/ControlNet-LLLite-C
|
|
90 |
RUN cd custom_nodes && git clone https://github.com/gokayfem/ComfyUI-Dream-Interpreter && cd ComfyUI-Dream-Interpreter && pip install -r requirements.txt
|
91 |
RUN cd custom_nodes && git clone https://github.com/cubiq/ComfyUI_IPAdapter_plus
|
92 |
RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet && cd ComfyUI-Advanced-ControlNet && pip install -r requirements.txt
|
|
|
93 |
|
94 |
# Checkpoints
|
95 |
RUN echo "Downloading checkpoints..."
|
|
|
1 |
+
FROM nvidia/cuda:12.1.0-cudnn8-devel-ubuntu22.04
|
2 |
|
3 |
ENV DEBIAN_FRONTEND=noninteractive \
|
4 |
TZ=America/Los_Angeles
|
|
|
47 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
48 |
|
49 |
RUN git clone https://github.com/comfyanonymous/ComfyUI . && git checkout c6951548cfec64c28082e6560c69c59e32729c9c && \
|
50 |
+
pip install xformers!=0.0.24 --no-cache-dir -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu121
|
51 |
|
52 |
# instal custom nodes
|
53 |
RUN echo "Installing custom nodes..."
|
|
|
90 |
RUN cd custom_nodes && git clone https://github.com/gokayfem/ComfyUI-Dream-Interpreter && cd ComfyUI-Dream-Interpreter && pip install -r requirements.txt
|
91 |
RUN cd custom_nodes && git clone https://github.com/cubiq/ComfyUI_IPAdapter_plus
|
92 |
RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet && cd ComfyUI-Advanced-ControlNet && pip install -r requirements.txt
|
93 |
+
RUN cd custom_nodes && git clone https://github.com/MrForExample/ComfyUI-3D-Pack && cd ComfyUI-Advanced-ControlNet && pip install -r requirements.txt && pip install -r requirements_post.txt
|
94 |
|
95 |
# Checkpoints
|
96 |
RUN echo "Downloading checkpoints..."
|