Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -26,9 +26,9 @@ COPY --chown=user plates/ /home/user/plates
|
|
| 26 |
USER root
|
| 27 |
RUN wget https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-9.1.0.70_cuda12-archive.tar.xz
|
| 28 |
RUN tar -xvf cudnn-linux-x86_64-9.1.0.70_cuda12-archive.tar.xz
|
| 29 |
-
RUN
|
| 30 |
-
RUN
|
| 31 |
-
RUN
|
| 32 |
USER user
|
| 33 |
|
| 34 |
RUN /app/bin/warmup_apps
|
|
|
|
| 26 |
USER root
|
| 27 |
RUN wget https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-9.1.0.70_cuda12-archive.tar.xz
|
| 28 |
RUN tar -xvf cudnn-linux-x86_64-9.1.0.70_cuda12-archive.tar.xz
|
| 29 |
+
RUN cp -P cudnn-linux-x86_64-9.1.0.70_cuda12-archive/include/cudnn.h /usr/local/cuda-12.6/include
|
| 30 |
+
RUN cp -P cudnn-linux-x86_64-9.1.0.70_cuda12-archive/lib/libcudnn* /usr/local/cuda-12.6/lib64/
|
| 31 |
+
RUN chmod a+r /usr/local/cuda-12.6/lib64/libcudnn*
|
| 32 |
USER user
|
| 33 |
|
| 34 |
RUN /app/bin/warmup_apps
|