Build and use Graphviz 2.44.1 straight from source

This commit is contained in:
terje 2020-11-11 20:34:57 -08:00 committed by arnaudroques
parent 1a02835f8f
commit 8805b90913
1 changed files with 22 additions and 1 deletions

View File

@ -8,11 +8,26 @@ RUN mvn --batch-mode --define java.net.useSystemProxies=true package
########################################################################################
FROM tomcat:9.0-jdk11-openjdk-slim as graphviz
RUN apt-get update && \
apt-get install -y wget binutils gcc make ghostscript groff g++ fontconfig fontconfig-config fonts-dejavu-core fonts-noto-cjk file libexpat1-dev libcairo2-dev libpango1.0-dev
RUN mkdir /root/build && \
cd /root/build && \
wget -O - https://www2.graphviz.org/Packages/stable/portable_source/graphviz-2.44.1.tar.gz | gzip -d | tar xvf - && \
cd graphviz-2.44.1 && \
./configure --prefix /usr && \
make -j 4 && \
make DESTDIR=/root/install/ install-strip
########################################################################################
FROM tomcat:9.0-jdk11-openjdk-slim
MAINTAINER D.Ducatel
RUN apt-get update && \
apt-get install -y --no-install-recommends graphviz fonts-noto-cjk && \
apt-get install -y --no-install-recommends fonts-noto-cjk libexpat1 libcairo2 libpango1.0 libpangoft2-1.0 libpangocairo-1.0 && \
apt-get clean && rm -rf /var/lib/apt/lists/*
ENV GRAPHVIZ_DOT=/usr/bin/dot
@ -20,3 +35,9 @@ ENV GRAPHVIZ_DOT=/usr/bin/dot
ARG BASE_URL=ROOT
RUN rm -rf /usr/local/tomcat/webapps/$BASE_URL
COPY --from=buildertomcat /app/target/plantuml.war /usr/local/tomcat/webapps/$BASE_URL.war
COPY --from=graphviz /root/install/usr/bin/dot /usr/bin/
COPY --from=graphviz /root/install/usr/lib/ /usr/lib/
RUN dot -c