Skip to content

Commit

Permalink
fix: add more missing libs
Browse files Browse the repository at this point in the history
  • Loading branch information
fgreinacher authored and arnaudroques committed Apr 11, 2023
1 parent 329aae7 commit 972d136
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
10 changes: 9 additions & 1 deletion Dockerfile.jetty
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ RUN apt-get update && \
curl \
build-essential \
libexpat1-dev \
libgd-dev \
zlib1g-dev \
&& \
mkdir -p $GRAPHVIZ_BUILD_DIR && \
cd $GRAPHVIZ_BUILD_DIR && \
Expand All @@ -41,7 +43,13 @@ RUN apt-get update && \
./configure && \
make && \
make install && \
apt-get remove -y curl build-essential && \
apt-get remove -y \
curl \
build-essential \
libexpat1-dev \
libgd-dev \
zlib1g-dev \
&& \
rm -rf /var/lib/apt/lists/* && \
rm -rf $GRAPHVIZ_BUILD_DIR

Expand Down
10 changes: 9 additions & 1 deletion Dockerfile.tomcat
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ RUN apt-get update && \
curl \
build-essential \
libexpat1-dev \
libgd-dev \
zlib1g-dev \
&& \
mkdir -p $GRAPHVIZ_BUILD_DIR && \
cd $GRAPHVIZ_BUILD_DIR && \
Expand All @@ -34,7 +36,13 @@ RUN apt-get update && \
./configure && \
make && \
make install && \
apt-get remove -y curl build-essential && \
apt-get remove -y \
curl \
build-essential \
libexpat1-dev \
libgd-dev \
zlib1g-dev \
&& \
rm -rf /var/lib/apt/lists/* && \
rm -rf $GRAPHVIZ_BUILD_DIR

Expand Down

0 comments on commit 972d136

Please sign in to comment.