From fd576dc27a8f97d88357145eb4853b47f5e4a95d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BD=D0=B8=D0=B8=D0=BB=20=D0=93=D1=80=D0=B0?= =?UTF-8?q?=D0=B1=D0=B0=D1=80=D1=8C?= Date: Thu, 21 May 2026 13:58:54 +1000 Subject: [PATCH] fix: ensure rosdep update does not fail during Docker build --- docker/jazzy/ros-base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/jazzy/ros-base/Dockerfile b/docker/jazzy/ros-base/Dockerfile index 9d9cb29..2fc044a 100644 --- a/docker/jazzy/ros-base/Dockerfile +++ b/docker/jazzy/ros-base/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ && rm -rf /var/lib/apt/lists/* RUN rosdep init && \ - rosdep update --rosdistro $ROS_DISTRO + rosdep update --rosdistro $ROS_DISTRO || true RUN colcon mixin add default \ https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml && \