Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -79,6 +79,10 @@ RUN cd /tmp && pip install -r requirements.txt
|
|
79 |
RUN pip install https://download.is.tue.mpg.de/icon/HF/kaolin-0.11.0-cp38-cp38-linux_x86_64.whl
|
80 |
RUN pip install https://download.is.tue.mpg.de/icon/HF/pytorch3d-0.7.0-cp38-cp38-linux_x86_64.whl
|
81 |
RUN pip install pyembree
|
|
|
|
|
|
|
|
|
82 |
RUN pip install git+https://github.com/YuliangXiu/neural_voxelization_layer.git
|
83 |
|
84 |
ENV TRANSFORMERS_CACHE=/tmp
|
@@ -97,6 +101,4 @@ COPY --chown=user . $HOME/app
|
|
97 |
# Set the working directory to the user's home directory
|
98 |
WORKDIR $HOME/app
|
99 |
|
100 |
-
RUN which nvcc
|
101 |
-
|
102 |
CMD ["python", "app.py"]
|
|
|
79 |
RUN pip install https://download.is.tue.mpg.de/icon/HF/kaolin-0.11.0-cp38-cp38-linux_x86_64.whl
|
80 |
RUN pip install https://download.is.tue.mpg.de/icon/HF/pytorch3d-0.7.0-cp38-cp38-linux_x86_64.whl
|
81 |
RUN pip install pyembree
|
82 |
+
|
83 |
+
# Verify CUDA installation
|
84 |
+
RUN ls /usr/local/cuda/bin
|
85 |
+
RUN nvcc --version
|
86 |
RUN pip install git+https://github.com/YuliangXiu/neural_voxelization_layer.git
|
87 |
|
88 |
ENV TRANSFORMERS_CACHE=/tmp
|
|
|
101 |
# Set the working directory to the user's home directory
|
102 |
WORKDIR $HOME/app
|
103 |
|
|
|
|
|
104 |
CMD ["python", "app.py"]
|