Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit 47ad4fe

Browse files
Install python3-graphviz manually (#10)
1 parent 991a4a7 commit 47ad4fe

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Dockerfile.rhel8

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ RUN vcs import src < ros-controls.rhel8.repos && \
4949
# add default.yaml to the image
5050
ADD defaults.yaml /root/.colcon/defaults.yaml
5151

52+
# there is no python3-graphviz on rhel8, so install it via pip
53+
RUN pip3 install graphviz
54+
5255
# set up sourcing of ros
5356
COPY ./ros_entrypoint.sh /
5457
ENTRYPOINT [ "/ros_entrypoint.sh" ]

Dockerfile.rhel9

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ RUN vcs import src < ros-controls.rhel9.repos && \
7878
# add default.yaml to the image
7979
ADD defaults.yaml /root/.colcon/defaults.yaml
8080

81+
# there is no python3-graphviz on rhel9, so install it via pip
82+
RUN pip3 install graphviz
83+
8184
# set up sourcing of ros
8285
COPY ./ros_entrypoint.sh /
8386
ENTRYPOINT [ "/ros_entrypoint.sh" ]

0 commit comments

Comments
 (0)