Skip to content

Commit

Permalink
chore: download PlantUML zip and extract files
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrossetie committed Feb 22, 2025
1 parent 1dece32 commit 3a0170c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server/ops/docker/jdk17-noble/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ RUN apt-get update && apt-get install --no-install-recommends --yes \
# * texlive-pictures - Provides various graphics packages like "circuitikz"
# * texlive-science - Provides various science packages like "siunitx"
RUN apt-get update && apt-get install --no-install-recommends --yes \
unzip \
dvisvgm=$DVISVGM_VERSION \
libpango1.0-dev \
librsvg2-dev \
Expand Down Expand Up @@ -239,7 +240,10 @@ RUN wget "https://github.com/terrastruct/d2/releases/download/v${D2_VERSION}/d2-
mv usr/bin/d2-v${D2_VERSION}/bin/d2 /usr/bin/d2 && \
chmod +x /usr/bin/d2

RUN wget "https://github.com/yuzutech/plantuml/releases/download/v${PLANTUML_VERSION}/plantuml-linux-${TARGETARCH}-${PLANTUML_VERSION}" -O /usr/bin/plantuml && \
RUN wget "https://github.com/yuzutech/plantuml/releases/download/v${PLANTUML_VERSION}/plantuml-linux-${TARGETARCH}-${PLANTUML_VERSION}.zip" -O plantuml-bin.zip && \
unzip plantuml-bin.zip -d plantuml && \
mv plantuml/* /usr/bin/ && \
mv /usr/bin/plantuml-linux-${TARGETARCH}-${PLANTUML_VERSION} /usr/bin/plantuml && \
chmod +x /usr/bin/plantuml

RUN wget "https://github.com/yuzutech/umlet/releases/download/${UMLET_VERSION}/umlet-linux-${TARGETARCH}" -O /usr/bin/umlet && \
Expand Down

0 comments on commit 3a0170c

Please sign in to comment.