From 329aae7fc64e4f909a06557ec0644215510bd39e Mon Sep 17 00:00:00 2001 From: Florian Greinacher Date: Tue, 11 Apr 2023 13:19:11 +0200 Subject: [PATCH] fix: add missing build dependency for graphviz --- Dockerfile.jetty | 3 ++- Dockerfile.tomcat | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile.jetty b/Dockerfile.jetty index aaf07c0..9bd2a03 100644 --- a/Dockerfile.jetty +++ b/Dockerfile.jetty @@ -25,12 +25,13 @@ RUN apt-get update && \ /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_VERSION=8.0.2 ARG GRAPHVIZ_BUILD_DIR=/tmp/graphiz-build RUN apt-get update && \ apt-get install -y --no-install-recommends \ curl \ build-essential \ + libexpat1-dev \ && \ mkdir -p $GRAPHVIZ_BUILD_DIR && \ cd $GRAPHVIZ_BUILD_DIR && \ diff --git a/Dockerfile.tomcat b/Dockerfile.tomcat index 4d9ee5e..16237bc 100644 --- a/Dockerfile.tomcat +++ b/Dockerfile.tomcat @@ -18,12 +18,13 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* # Build Graphviz from source because there are no binary distributions for recent versions -ARG GRAPHVIZ_VERSION=7.1.0 +ARG GRAPHVIZ_VERSION=8.0.2 ARG GRAPHVIZ_BUILD_DIR=/tmp/graphiz-build RUN apt-get update && \ apt-get install -y --no-install-recommends \ curl \ build-essential \ + libexpat1-dev \ && \ mkdir -p $GRAPHVIZ_BUILD_DIR && \ cd $GRAPHVIZ_BUILD_DIR && \