From eea7b17c9818e9b2156cbebfbaa50e9be5f63a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Gonz=C3=A1lez=20Santamarta?= Date: Fri, 13 Dec 2024 17:03:08 +0100 Subject: [PATCH] --include-eol-distros moved to rosdep update --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ed4f926..a24d732 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY . /root/ros2_ws/src # install dependencies RUN source /opt/ros/${ROS_DISTRO}/setup.bash RUN apt-get update -RUN rosdep update && rosdep install --from-paths src --ignore-src -r -y --include-eol-distros +RUN rosdep update --include-eol-distros && rosdep install --from-paths src --ignore-src -r -y # colcon the ws FROM deps AS builder