mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-30 07:25:37 +08:00
* add github actions * add amd64-ubuntu-18.04-cache volumes * update core.yml in github actions * update ci/docker/ubuntu-18.04-core.dockerfile * update CI scripts file * update github actions * update github actions * update github actions * remove Travis CI * update docker-compose.yml * update ci scripts files * update docker-compose.yml
28 lines
1.4 KiB
Docker
28 lines
1.4 KiB
Docker
ARG arch=amd64
|
|
FROM ${arch}/ubuntu:18.04
|
|
|
|
# pipefail is enabled for proper error detection in the `wget | apt-key add`
|
|
# step
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends wget ca-certificates gnupg2 && \
|
|
wget -P /tmp https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB && \
|
|
apt-key add /tmp/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB && \
|
|
sh -c 'echo deb https://apt.repos.intel.com/mkl all main > /etc/apt/sources.list.d/intel-mkl.list' && \
|
|
wget -qO- "https://cmake.org/files/v3.14/cmake-3.14.3-Linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C /usr/local && \
|
|
apt-get update && apt-get install -y --no-install-recommends \
|
|
g++ git gfortran lsb-core ccache \
|
|
libboost-serialization-dev libboost-filesystem-dev libboost-system-dev libboost-regex-dev \
|
|
curl libtool automake libssl-dev pkg-config libcurl4-openssl-dev python3-pip \
|
|
clang-format-6.0 clang-tidy-6.0 \
|
|
lcov mysql-client libmysqlclient-dev intel-mkl-gnu-2019.5-281 intel-mkl-core-2019.5-281 libopenblas-dev liblapack3 && \
|
|
apt-get remove --purge -y && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN ln -s /usr/lib/x86_64-linux-gnu/libmysqlclient.so \
|
|
/usr/lib/x86_64-linux-gnu/libmysqlclient_r.so
|
|
|
|
RUN sh -c 'echo export LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2019.5.281/linux/mkl/lib/intel64:\$LD_LIBRARY_PATH > /etc/profile.d/mkl.sh'
|