Skip to content

Commit

Permalink
Install python3-graphviz (#17)
Browse files Browse the repository at this point in the history
* Install python3-graphviz

* Also for debian11
  • Loading branch information
christophfroehlich authored Feb 1, 2025
1 parent 23742c3 commit 923a00f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile.debian11
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ RUN colcon \
# add default.yaml to the image
ADD defaults.yaml /root/.colcon/defaults.yaml

# there is no python3-graphviz on debian11, so install it via pip
RUN pip3 install graphviz

# set up sourcing of ros
COPY ./ros_entrypoint.sh /
ENTRYPOINT [ "/ros_entrypoint.sh" ]
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.debian12
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ RUN colcon \
# add default.yaml to the image
ADD defaults.yaml /root/.colcon/defaults.yaml

# there is no python3-graphviz on debian12, so install it via pip
RUN pip3 install graphviz --break-system-packages

# set up sourcing of ros
COPY ./ros_entrypoint.sh /
ENTRYPOINT [ "/ros_entrypoint.sh" ]
Expand Down

0 comments on commit 923a00f

Please sign in to comment.