mirror of https://github.com/milvus-io/milvus.git
Add automake to builder image (#16260)
Signed-off-by: dragondriver <jiquan.long@zilliz.com>pull/16269/head
parent
d5d6e115bd
commit
70c10d4a16
|
@ -17,7 +17,7 @@ RUN yum install -y epel-release centos-release-scl-rh && yum install -y wget cur
|
|||
libcurl-devel python3-devel \
|
||||
devtoolset-7-gcc devtoolset-7-gcc-c++ devtoolset-7-gcc-gfortran \
|
||||
llvm-toolset-7.0-clang llvm-toolset-7.0-clang-tools-extra \
|
||||
ccache lcov libtool m4 autoconf && \
|
||||
ccache lcov libtool m4 autoconf automake && \
|
||||
rm -rf /var/cache/yum/* && \
|
||||
echo "source scl_source enable devtoolset-7" >> /etc/profile.d/devtoolset-7.sh && \
|
||||
echo "source scl_source enable llvm-toolset-7.0" >> /etc/profile.d/llvm-toolset-7.sh
|
||||
|
|
|
@ -14,7 +14,7 @@ FROM milvusdb/openblas:ubuntu18.04-20210428
|
|||
RUN apt-get update && apt-get install -y --no-install-recommends wget curl ca-certificates gnupg2 && \
|
||||
wget -qO- "https://cmake.org/files/v3.18/cmake-3.18.6-Linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C /usr/local && \
|
||||
apt-get update && apt-get install -y --no-install-recommends \
|
||||
g++ gcc gfortran git make ccache libssl-dev zlib1g-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-filesystem-dev libboost-serialization-dev python3-dev libboost-python-dev libcurl4-openssl-dev libtbb-dev clang-format-10 clang-tidy-10 lcov libtool m4 autoconf && \
|
||||
g++ gcc gfortran git make ccache libssl-dev zlib1g-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-filesystem-dev libboost-serialization-dev python3-dev libboost-python-dev libcurl4-openssl-dev libtbb-dev clang-format-10 clang-tidy-10 lcov libtool m4 autoconf automake && \
|
||||
apt-get remove --purge -y && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
|
Loading…
Reference in New Issue