File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ FROM nvidia/cuda:11.4.2-cudnn8-devel-ubuntu20.04
2
2
3
3
# TensorFlow version is tightly coupled to CUDA and cuDNN so it should be selected carefully
4
4
ARG CUDA=11.4
5
- ENV CUDA_VERSION=11.4.2
6
- ARG LIBNVINFER=8.0 .0-1
5
+ ENV CUDA_VERSION=11.4.3
6
+ ARG LIBNVINFER=8.2 .0-1
7
7
ARG LIBNVINFER_MAJOR_VERSION=8
8
8
ARG CUDNN=8.2.4.15-1
9
9
ENV CUDNN_VERSION 8.2.4.15
@@ -148,7 +148,6 @@ RUN rm -fr /var/lib/apt/lists/* && \
148
148
openssh-server \
149
149
pdsh \
150
150
pkg-config \
151
- pkg-config \
152
151
proj-bin \
153
152
protobuf-compiler \
154
153
python-apt \
@@ -191,8 +190,17 @@ RUN apt-get update && \
191
190
apt-get install -y --no-install-recommends \
192
191
libnvinfer${LIBNVINFER_MAJOR_VERSION}=${LIBNVINFER}+cuda${CUDA} \
193
192
libnvinfer-dev=${LIBNVINFER}+cuda${CUDA} \
194
- libnvinfer-plugin7 \
195
- libnvinfer-plugin-dev=${LIBNVINFER}+cuda${CUDA} \
193
+ libnvparsers8=${LIBNVINFER}+cuda${CUDA} \
194
+ libnvinfer-plugin8=${LIBNVINFER}+cuda${CUDA} \
195
+ libnvinfer-dev=${LIBNVINFER}+cuda${CUDA} \
196
+ libnvonnxparsers-dev=${LIBNVINFER}+cuda${CUDA} \
197
+ libnvparsers-dev=${LIBNVINFER}+cuda${CUDA} \
198
+ libnvinfer-plugin-dev=${LIBNVINFER}+cuda${CUDA} \
199
+ python3-libnvinfer=${LIBNVINFER}+cuda${CUDA} \
200
+ uff-converter-tf \
201
+ onnx-graphsurgeon \
202
+ && \
203
+ apt-mark hold libnvinfer8 libnvonnxparsers8 libnvparsers8 libnvinfer-plugin8 libnvinfer-dev libnvonnxparsers-dev libnvparsers-dev libnvinfer-plugin-dev python3-libnvinfer \
196
204
&& \
197
205
apt-get clean && \
198
206
rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments