fix: use up-to-date graphviz version in tomcat image

This commit is contained in:
Florian Greinacher
2023-03-29 16:02:48 +02:00
committed by PlantUML
parent df081c20a4
commit 8a9825395a
2 changed files with 22 additions and 3 deletions

View File

@@ -24,6 +24,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* && \
/generate-jetty-start.sh
# Build Graphviz from source because there are no binary distributions for recent versions
ARG GRAPHVIZ_VERSION=7.1.0
ARG GRAPHVIZ_BUILD_DIR=/tmp/graphiz-build
RUN apt-get update && \
@@ -43,8 +44,6 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* && \
rm -rf $GRAPHVIZ_BUILD_DIR
RUN dot -V
COPY docker-entrypoint.jetty.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh