Skip to content

Commit fcf4d9e

Browse files
Pin TensorRT dependency to 10.3.0
1 parent a40a017 commit fcf4d9e

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Isaac ROS Common
88
repository contains a number of scripts and Dockerfiles to help
99
streamline development and testing with the Isaac ROS suite.
1010

11-
<div align="center"><a class="reference internal image-reference" href="https://media.githubusercontent.com/media/NVIDIA-ISAAC-ROS/.github/main/resources/isaac_ros_docs/repositories_and_packages/isaac_ros_common/isaac_ros_common_tools.png/"><img alt="Isaac ROS DevOps tools" src="https://media.githubusercontent.com/media/NVIDIA-ISAAC-ROS/.github/main/resources/isaac_ros_docs/repositories_and_packages/isaac_ros_common/isaac_ros_common_tools.png/" width="auto"/></a></div>
11+
<div align="center"><a class="reference internal image-reference" href="https://media.githubusercontent.com/media/NVIDIA-ISAAC-ROS/.github/release-3.2/resources/isaac_ros_docs/repositories_and_packages/isaac_ros_common/isaac_ros_common_tools.png/"><img alt="Isaac ROS DevOps tools" src="https://media.githubusercontent.com/media/NVIDIA-ISAAC-ROS/.github/release-3.2/resources/isaac_ros_docs/repositories_and_packages/isaac_ros_common/isaac_ros_common_tools.png/" width="auto"/></a></div>
1212

1313
Docker containers allow you to quickly set up a sensitive set of frameworks
1414
and dependencies to ensure a smooth experience with Isaac ROS packages.

docker/Dockerfile.base

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -324,12 +324,27 @@ RUN --mount=type=cache,target=/var/cache/apt \
324324
# Install TensorRT
325325
RUN --mount=type=cache,target=/var/cache/apt \
326326
apt-get update && apt-get install -y \
327-
libnvinfer10 \
328-
libnvinfer-plugin10 \
329-
libnvonnxparsers10 \
330-
libnvinfer-dispatch10 \
331-
libnvinfer-bin \
332-
tensorrt
327+
libnvinfer10=10.3.0.30-1+cuda12.5 \
328+
libnvinfer-plugin10=10.3.0.30-1+cuda12.5 \
329+
libnvinfer-lean10=10.3.0.30-1+cuda12.5 \
330+
libnvinfer-vc-plugin10=10.3.0.30-1+cuda12.5 \
331+
libnvonnxparsers10=10.3.0.30-1+cuda12.5 \
332+
libnvinfer-dispatch10=10.3.0.30-1+cuda12.5 \
333+
libnvinfer-bin=10.3.0.30-1+cuda12.5 \
334+
libnvinfer-dev=10.3.0.30-1+cuda12.5 \
335+
libnvinfer-lean-dev=10.3.0.30-1+cuda12.5 \
336+
libnvinfer-plugin-dev=10.3.0.30-1+cuda12.5 \
337+
libnvinfer-vc-plugin-dev=10.3.0.30-1+cuda12.5 \
338+
libnvinfer-dispatch-dev=10.3.0.30-1+cuda12.5 \
339+
libnvonnxparsers-dev=10.3.0.30-1+cuda12.5 \
340+
libnvinfer-samples=10.3.0.30-1+cuda12.5 \
341+
libnvinfer-headers-dev=10.3.0.30-1+cuda12.5 \
342+
libnvinfer-headers-plugin-dev=10.3.0.30-1+cuda12.5 \
343+
python3-libnvinfer=10.3.0.30-1+cuda12.5 \
344+
python3-libnvinfer-lean=10.3.0.30-1+cuda12.5 \
345+
python3-libnvinfer-dispatch=10.3.0.30-1+cuda12.5 \
346+
python3-libnvinfer-dev=10.3.0.30-1+cuda12.5 \
347+
tensorrt=10.3.0.30-1+cuda12.5
333348

334349
ENV TRT_LIB_PATH="/usr/lib/aarch64-linux-gnu"
335350
ENV TRT_INCLUDE_PATH="/usr/include/aarch64-linux-gnu"

0 commit comments

Comments
 (0)