Update Dockerfile
Browse files- Dockerfile +2 -4
Dockerfile
CHANGED
@@ -54,10 +54,8 @@ RUN apt-get update && apt-get install -y \
|
|
54 |
&& dpkg -i cudnn-local-repo-ubuntu2204-9.3.0_1.0-1_amd64.deb \
|
55 |
&& cp /var/cudnn-local-repo-ubuntu2204-9.3.0/cudnn-local-*-keyring.gpg /usr/share/keyrings/ \
|
56 |
&& apt-get update \
|
57 |
-
&& apt-
|
58 |
-
|
59 |
-
libcudnn9-dev=9.3.0.84-1+cuda12.3 \
|
60 |
-
libcudnn9-samples=9.3.0.84-1+cuda12.3 \
|
61 |
&& apt-get clean \
|
62 |
&& rm -rf /var/lib/apt/lists/* \
|
63 |
&& rm cudnn-local-repo-ubuntu2204-9.3.0_1.0-1_amd64.deb
|
|
|
54 |
&& dpkg -i cudnn-local-repo-ubuntu2204-9.3.0_1.0-1_amd64.deb \
|
55 |
&& cp /var/cudnn-local-repo-ubuntu2204-9.3.0/cudnn-local-*-keyring.gpg /usr/share/keyrings/ \
|
56 |
&& apt-get update \
|
57 |
+
&& apt-cache madison libcudnn9 \
|
58 |
+
&& apt-get install -y libcudnn9 \
|
|
|
|
|
59 |
&& apt-get clean \
|
60 |
&& rm -rf /var/lib/apt/lists/* \
|
61 |
&& rm cudnn-local-repo-ubuntu2204-9.3.0_1.0-1_amd64.deb
|