mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-30 15:35:33 +08:00
* enable build milvus on centos7 * Update build enviroment Centos7 dockerfile * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update Dockerfile * add centos7_build_deps.sh * add centos7 build cpu version enviroment * add centos7 on github actions * fix bug * fix bug * fix bug * update ci/docker/centos-7-core.dockerfile * fix github actions bug * update centos7 case on github actions * update docker-compose.yml * debug centos case on github actions * debug centos case on github actions * add centos7 deploy dockerfile
18 lines
388 B
Docker
18 lines
388 B
Docker
FROM centos:centos7
|
|
|
|
RUN yum install -y epel-release && \
|
|
yum install -y libgomp libgfortran4 mysql-devel && \
|
|
rm -rf /var/cache/yum/*
|
|
|
|
COPY ./milvus /var/lib/milvus
|
|
COPY ./docker-entrypoint.sh /var/lib/milvus
|
|
ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/var/lib/milvus/lib"
|
|
|
|
WORKDIR /var/lib/milvus
|
|
|
|
ENTRYPOINT [ "/var/lib/milvus/docker-entrypoint.sh" ]
|
|
|
|
CMD [ "start" ]
|
|
|
|
EXPOSE 19530
|