Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install all package deps on Noble containers #426

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docker/images/jazzy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ RUN apt-get update \
&& apt-get -y dist-upgrade \
&& . /opt/ros/jazzy/setup.sh \
&& rosdep update \
&& rosdep install -i -y --from-path src --skip-keys 'turtlebot3_gazebo gazebo_ros_pkgs slam_toolbox nav2_amcl nav2_lifecycle_manager nav2_map_server' -t doc -t exec -t build \
&& rosdep install -i -y --from-path src \
&& rosdep install -i -y --from-path src -t doc \
&& sudo rm -rf /var/lib/apt/lists/*

COPY --from=cacher --chown=$USER:$GROUP /ws/ $USER_WS/
Expand Down
3 changes: 2 additions & 1 deletion docker/images/rolling/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ RUN apt-get update \
&& apt-get -y dist-upgrade \
&& . /opt/ros/rolling/setup.sh \
&& rosdep update \
&& rosdep install -i -y --from-path src --skip-keys 'turtlebot3_gazebo gazebo_ros_pkgs slam_toolbox' -t exec -t doc -t build \
&& rosdep install -i -y --from-path src --skip-keys 'slam_toolbox' \
&& rosdep install -i -y --from-path src -t doc \
&& rm -rf /var/lib/apt/lists/*

USER $USER:$GROUP
Expand Down
Loading