Skip to content

Commit

Permalink
feat: Add developer tools to images
Browse files Browse the repository at this point in the history
  • Loading branch information
2b-t committed Sep 1, 2024
1 parent e24d043 commit c97102e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
12 changes: 11 additions & 1 deletion templates/ros/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ RUN apt-get update \
python3-osrf-pycommon \
&& rm -rf /var/lib/apt/lists/*

RUN apt-get update \
&& apt-get -y install \
ros-${ROS_DISTRO}-compressed-image-transport \
ros-${ROS_DISTRO}-compressed-depth-image-transport \
ros-${ROS_DISTRO}-image-transport \
&& rm -rf /var/lib/apt/lists/*

# Add additional installation instructions here...

ENV DEBIAN_FRONTEND=dialog
Expand Down Expand Up @@ -49,12 +56,15 @@ RUN apt-get update \
mlocate \
net-tools \
psmisc \
python3-vcstool \
tmux \
xterm \
&& rm -rf /var/lib/apt/lists/*

RUN apt-get update \
&& apt-get install -y \
python3-vcstool \
ros-${ROS_DISTRO}-rqt-common-plugins \
ros-${ROS_DISTRO}-rqt-robot-plugins \
ros-${ROS_DISTRO}-rviz \
&& rm -rf /var/lib/apt/lists/*

Expand Down
11 changes: 10 additions & 1 deletion templates/ros2/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ RUN apt-get update \

RUN apt-get update \
&& apt-get -y install \
ros-${ROS_DISTRO}-compressed-image-transport \
ros-${ROS_DISTRO}-compressed-depth-image-transport \
ros-${ROS_DISTRO}-image-transport \
ros-${ROS_DISTRO}-point-cloud-transport \
ros-${ROS_DISTRO}-point-cloud-transport-plugins \
ros-${ROS_DISTRO}-rmw-cyclonedds-cpp \
&& rm -rf /var/lib/apt/lists/*

Expand Down Expand Up @@ -54,12 +59,16 @@ RUN apt-get update \
mlocate \
net-tools \
psmisc \
python3-vcstool \
tmux \
xterm \
&& rm -rf /var/lib/apt/lists/*

RUN apt-get update \
&& apt-get install -y \
python3-vcstool \
ros-${ROS_DISTRO}-rqt-common-plugins \
ros-${ROS_DISTRO}-rqt-robot-steering \
ros-${ROS_DISTRO}-rqt-tf-tree \
ros-${ROS_DISTRO}-rviz2 \
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit c97102e

Please sign in to comment.