Spaces:
Building
on
A10G
Building
on
A10G
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -20,7 +20,6 @@ WORKDIR /code
|
|
20 |
COPY ./requirements.txt /code/requirements.txt
|
21 |
|
22 |
COPY ./requirements_post.txt /requirements_post.txt
|
23 |
-
RUN pip install --no-cache-dir -r /requirements_post.txt
|
24 |
|
25 |
# User
|
26 |
RUN useradd -m -u 1000 user
|
@@ -56,7 +55,7 @@ RUN git clone https://github.com/comfyanonymous/ComfyUI . && git checkout c69515
|
|
56 |
# instal custom nodes
|
57 |
RUN echo "Installing custom nodes..."
|
58 |
RUN pip install -U onnxruntime-gpu
|
59 |
-
RUN pip install -r requirements_post.txt
|
60 |
|
61 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git
|
62 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack && cd ComfyUI-Impact-Pack && python install.py
|
|
|
20 |
COPY ./requirements.txt /code/requirements.txt
|
21 |
|
22 |
COPY ./requirements_post.txt /requirements_post.txt
|
|
|
23 |
|
24 |
# User
|
25 |
RUN useradd -m -u 1000 user
|
|
|
55 |
# instal custom nodes
|
56 |
RUN echo "Installing custom nodes..."
|
57 |
RUN pip install -U onnxruntime-gpu
|
58 |
+
RUN pip install --no-cache-dir -r /requirements_post.txt
|
59 |
|
60 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git
|
61 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack && cd ComfyUI-Impact-Pack && python install.py
|