kadirnar commited on
Commit
d45da34
1 Parent(s): 20ec03b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -8
Dockerfile CHANGED
@@ -93,15 +93,13 @@ RUN pip install -U onnxruntime-gpu
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
- # Özel node klasörlerini kopyala
97
- COPY ./tgs/models/snowflake/pointnet2_ops_lib custom_nodes/ComfyUI-3D-Pack/pointnet2_ops_lib
98
- COPY ./simple-knn custom_nodes/ComfyUI-3D-Pack/simple-knn
99
-
100
-
101
- # Yerel kütüphaneleri kur
102
- RUN pip install custom_nodes/ComfyUI-3D-Pack/pointnet2_ops_lib
103
- RUN pip install custom_nodes/ComfyUI-3D-Pack/simple-knn
104
 
 
 
 
105
 
106
  # remote dependencies
107
  RUN pip install -U kiui[full]
 
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
+ # Local dosyaları 3D paketi içine kopyala
97
+ COPY ./tgs/models/snowflake/pointnet2_ops_lib $HOME/app/custom_nodes/ComfyUI-3D-Pack/pointnet2_ops_lib
98
+ COPY ./simple-knn $HOME/app/custom_nodes/ComfyUI-3D-Pack/simple-knn
 
 
 
 
 
99
 
100
+ # Yerel kütüphaneleri yükle
101
+ RUN cd $HOME/app/custom_nodes/ComfyUI-3D-Pack/pointnet2_ops_lib && pip install . && \
102
+ cd $HOME/app/custom_nodes/ComfyUI-3D-Pack/simple-knn && pip install .
103
 
104
  # remote dependencies
105
  RUN pip install -U kiui[full]