kadirnar commited on
Commit
63903ba
·
verified ·
1 Parent(s): b723249

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -8
Dockerfile CHANGED
@@ -93,14 +93,15 @@ 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
- # Update: Copy local directories into the Docker image
97
- COPY ./tgs/models/snowflake/pointnet2_ops_lib /home/user/app/tgs/models/snowflake/pointnet2_ops_lib
98
- COPY ./simple-knn /home/user/app/simple-knn
99
-
100
- # Installation commands for local directories
101
- RUN pip install ./tgs/models/snowflake/pointnet2_ops_lib
102
- RUN pip install ./simple-knn
103
- # Copy the current directory contents into the container at $HOME/app setting the owner to the user
 
104
 
105
  # remote dependencies
106
  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
+ # Özel node klasörlerini kopyala
97
+ COPY ./tgs/models/snowflake/pointnet2_ops_lib /home/user/app/ComfyUI/custom_nodes/ComfyUI-3D-Pack/pointnet2_ops_lib
98
+ COPY ./simple-knn /home/user/app/ComfyUI/custom_nodes/ComfyUI-3D-Pack/simple-knn
99
+
100
+
101
+ # Yerel kütüphaneleri kur
102
+ RUN pip install /home/user/app/ComfyUI/custom_nodes/ComfyUI-3D-Pack/pointnet2_ops_lib
103
+ RUN pip install /home/user/app/ComfyUI/custom_nodes/ComfyUI-3D-Pack/simple-knn
104
+
105
 
106
  # remote dependencies
107
  RUN pip install -U kiui[full]