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

Commit 923a00f

Browse files
Install python3-graphviz (#17)
* Install python3-graphviz * Also for debian11
1 parent 23742c3 commit 923a00f

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Dockerfile.debian11

+3
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ RUN colcon \
148148
# add default.yaml to the image
149149
ADD defaults.yaml /root/.colcon/defaults.yaml
150150

151+
# there is no python3-graphviz on debian11, so install it via pip
152+
RUN pip3 install graphviz
153+
151154
# set up sourcing of ros
152155
COPY ./ros_entrypoint.sh /
153156
ENTRYPOINT [ "/ros_entrypoint.sh" ]

Dockerfile.debian12

+3
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@ RUN colcon \
143143
# add default.yaml to the image
144144
ADD defaults.yaml /root/.colcon/defaults.yaml
145145

146+
# there is no python3-graphviz on debian12, so install it via pip
147+
RUN pip3 install graphviz --break-system-packages
148+
146149
# set up sourcing of ros
147150
COPY ./ros_entrypoint.sh /
148151
ENTRYPOINT [ "/ros_entrypoint.sh" ]

0 commit comments

Comments
 (0)