From 335bcd88ba7ba9c8f0efdfe3bb23b333f0d2a21c Mon Sep 17 00:00:00 2001 From: Tomoya Fujita Date: Wed, 2 Jul 2025 18:55:41 -0700 Subject: [PATCH] Add comment not to remove the `make multiversion` from Dockerfile. (#5756) Signed-off-by: Tomoya Fujita (cherry picked from commit 7f1d20fddaa5bf4de4e72b8b8ce89fb530300667) --- docker/image/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/image/Dockerfile b/docker/image/Dockerfile index dbf41a234b3..74d0a843ff5 100644 --- a/docker/image/Dockerfile +++ b/docker/image/Dockerfile @@ -34,4 +34,6 @@ WORKDIR /tmp/doc_repository USER $user +# https://build.ros.org/job/doc_ros2doc/ relies on "make multiversion" to build the official documentation. +# Do not remove "make multiversion" from CMD, as it is the entrypoint for the container. CMD ["bash", "-c", "pip3 install --no-warn-script-location --user -r requirements.txt -c constraints.txt && make multiversion"]