From 1c7fb97dffb98fd9573b7d23cd5c903c24e0f0c6 Mon Sep 17 00:00:00 2001 From: Leandro Nunes Date: Thu, 8 Oct 2020 16:47:43 +0100 Subject: [PATCH] [CI] make sure graphviz is on both ci-cpu and ci-gpu images (#6645) --- docker/Dockerfile.ci_gpu | 2 +- docker/install/ubuntu_install_core.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile.ci_gpu b/docker/Dockerfile.ci_gpu index 7b8468ef7346..1197d8e4c7b6 100644 --- a/docker/Dockerfile.ci_gpu +++ b/docker/Dockerfile.ci_gpu @@ -41,7 +41,7 @@ COPY install/ubuntu_install_sphinx.sh /install/ubuntu_install_sphinx.sh RUN bash /install/ubuntu_install_sphinx.sh # Enable doxygen for c++ doc build -RUN apt-get update && apt-get install -y doxygen graphviz libprotobuf-dev protobuf-compiler +RUN apt-get update && apt-get install -y doxygen libprotobuf-dev protobuf-compiler COPY install/ubuntu_install_java.sh /install/ubuntu_install_java.sh RUN bash /install/ubuntu_install_java.sh diff --git a/docker/install/ubuntu_install_core.sh b/docker/install/ubuntu_install_core.sh index db72d9c67293..bb40b052ded3 100755 --- a/docker/install/ubuntu_install_core.sh +++ b/docker/install/ubuntu_install_core.sh @@ -24,7 +24,7 @@ set -o pipefail apt-get update && apt-get install -y --no-install-recommends \ git make libgtest-dev cmake wget unzip libtinfo-dev libz-dev\ libcurl4-openssl-dev libopenblas-dev g++ sudo \ - apt-transport-https + apt-transport-https graphviz cd /usr/src/gtest && cmake CMakeLists.txt && make && cp *.a /usr/lib