kadirnar commited on
Commit
4dec1c3
·
verified ·
1 Parent(s): 943bf39

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -4
Dockerfile CHANGED
@@ -19,8 +19,6 @@ WORKDIR /code
19
 
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
26
  USER user
@@ -54,7 +52,7 @@ RUN git clone https://github.com/comfyanonymous/ComfyUI . && git checkout c69515
54
 
55
  # instal custom nodes
56
  RUN echo "Installing custom nodes..."
57
- RUN pip install -U onnxruntime-gpu kiui[full]
58
 
59
  RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git
60
  RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack && cd ComfyUI-Impact-Pack && python install.py
@@ -94,7 +92,15 @@ RUN cd custom_nodes && git clone https://github.com/gokayfem/ComfyUI-Dream-Inter
94
  RUN cd custom_nodes && git clone https://github.com/cubiq/ComfyUI_IPAdapter_plus
95
  RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet && cd ComfyUI-Advanced-ControlNet && pip install -r requirements.txt
96
  RUN cd custom_nodes && git clone https://github.com/MrForExample/ComfyUI-3D-Pack && cd ComfyUI-3D-Pack && pip install -r requirements.txt
97
- RUN pip install -r requirements_post.txt
 
 
 
 
 
 
 
 
98
 
99
 
100
  # RUN echo "Downloading checkpoints..."
 
19
 
20
  COPY ./requirements.txt /code/requirements.txt
21
 
 
 
22
  # User
23
  RUN useradd -m -u 1000 user
24
  USER user
 
52
 
53
  # instal custom nodes
54
  RUN echo "Installing custom nodes..."
55
+ RUN pip install -U onnxruntime-gpu
56
 
57
  RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git
58
  RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack && cd ComfyUI-Impact-Pack && python install.py
 
92
  RUN cd custom_nodes && git clone https://github.com/cubiq/ComfyUI_IPAdapter_plus
93
  RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet && cd ComfyUI-Advanced-ControlNet && pip install -r requirements.txt
94
  RUN cd custom_nodes && git clone https://github.com/MrForExample/ComfyUI-3D-Pack && cd ComfyUI-3D-Pack && pip install -r requirements.txt
95
+
96
+ RUN pip install kiui[full]
97
+ # local
98
+ RUN pip install ./tgs/models/snowflake/pointnet2_ops_lib
99
+ RUN pip install ./simple-knn
100
+
101
+ # remote
102
+ RUN pip install git+https://github.com/ashawkey/diff-gaussian-rasterization git+https://github.com/NVlabs/nvdiffrast/ git+https://github.com/facebookresearch/pytorch3d.git@stable git+https://github.com/rusty1s/pytorch_scatter.git git+https://github.com/tatsy/torchmcubes.git
103
+
104
 
105
 
106
  # RUN echo "Downloading checkpoints..."