From 9a41b0f8c2e18e0a55d7628d81327e9ce6893e06 Mon Sep 17 00:00:00 2001 From: Tomoya Fujita Date: Wed, 25 Jun 2025 11:33:09 -0700 Subject: [PATCH] Add comment not to remove the `make multiversion` from Dockerfile. Signed-off-by: Tomoya Fujita --- 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"]