fix: add missing build dependency for graphviz

This commit is contained in:
Florian Greinacher 2023-04-11 13:19:11 +02:00 committed by PlantUML
parent ebece93726
commit 329aae7fc6
2 changed files with 4 additions and 2 deletions

View File

@ -25,12 +25,13 @@ RUN apt-get update && \
/generate-jetty-start.sh /generate-jetty-start.sh
# Build Graphviz from source because there are no binary distributions for recent versions # 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 ARG GRAPHVIZ_BUILD_DIR=/tmp/graphiz-build
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
curl \ curl \
build-essential \ build-essential \
libexpat1-dev \
&& \ && \
mkdir -p $GRAPHVIZ_BUILD_DIR && \ mkdir -p $GRAPHVIZ_BUILD_DIR && \
cd $GRAPHVIZ_BUILD_DIR && \ cd $GRAPHVIZ_BUILD_DIR && \

View File

@ -18,12 +18,13 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
# Build Graphviz from source because there are no binary distributions for recent versions # 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 ARG GRAPHVIZ_BUILD_DIR=/tmp/graphiz-build
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
curl \ curl \
build-essential \ build-essential \
libexpat1-dev \
&& \ && \
mkdir -p $GRAPHVIZ_BUILD_DIR && \ mkdir -p $GRAPHVIZ_BUILD_DIR && \
cd $GRAPHVIZ_BUILD_DIR && \ cd $GRAPHVIZ_BUILD_DIR && \