DockerFile 1.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
# Copyright (C) 2019-2020 Zilliz. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied. See the License for the specific language governing permissions and limitations under the License.

12 13 14
FROM milvusdb/milvus-distributed-dev:amd64-ubuntu18.04-latest AS openblas

#FROM alpine
15 16
FROM ubuntu:bionic-20200921

17 18 19 20 21 22 23 24 25 26 27 28
RUN apt-get update && apt-get install -y --no-install-recommends libtbb-dev gfortran

#RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories

#RUN sed -i "s/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g" /etc/apk/repositories \
#      && apk add --no-cache libtbb gfortran

COPY --from=openblas /usr/lib/libopenblas-r0.3.9.so /usr/lib/

RUN ln -s /usr/lib/libopenblas-r0.3.9.so /usr/lib/libopenblas.so.0 && \
    ln -s /usr/lib/libopenblas.so.0 /usr/lib/libopenblas.so

29 30 31 32 33 34 35 36 37 38
COPY ./bin/queryservice /milvus-distributed/bin/queryservice

COPY ./configs/ /milvus-distributed/configs/

COPY ./lib/ /milvus-distributed/lib/

ENV LD_LIBRARY_PATH=/milvus-distributed/lib:$LD_LIBRARY_PATH:/usr/lib

WORKDIR /milvus-distributed/

39
CMD ["./bin/queryservice"]