Add plantuml support to the documentation

This commit is contained in:
Shrukan
2024-02-17 20:27:20 -07:00
parent f040771918
commit e621cb84c7
4 changed files with 8 additions and 6 deletions

View File

@ -1,7 +1,7 @@
FROM gcc:13
# Install build tools
RUN apt-get update && apt-get install -y python3 python3-pip ninja-build clang-format clang-tidy gdb graphviz git curl zsh \
RUN apt-get update && apt-get install -y python3 python3-pip ninja-build clang-format clang-tidy gdb openjdk-17-jdk-headless graphviz git curl zsh \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --break-system-packages meson gcovr
@ -19,6 +19,9 @@ RUN wget -O mold.tar.gz https://github.com/rui314/mold/releases/download/v2.4.0/
ENV CC_LD=mold
ENV CXX_LD=mold
# Install plantuml
RUN wget --progress=bar:force:noscroll https://github.com/plantuml/plantuml/releases/download/v1.2024.3/plantuml-mit-1.2024.3.jar -O /usr/local/bin/plantuml.jar
# Install node for actions
RUN curl -fsSL https://deb.nodesource.com/setup_current.x | bash - && apt-get install -y nodejs