enhance: add openblas in runtime env (#31974)

Signed-off-by: Liang Huang <sammy.huang@zilliz.com>
This commit is contained in:
sammy.huang 2024-04-08 14:57:16 +08:00 committed by GitHub
parent 1c2ae59ece
commit 703fcac819
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ FROM amazonlinux:2023
ARG TARGETARCH
RUN yum install -y wget libgomp libaio libatomic && \
RUN yum install -y wget libgomp libaio libatomic openblas-devel && \
rm -rf /var/cache/yum/*
COPY --chown=root:root --chmod=774 ./bin/ /milvus/bin/

View File

@ -14,7 +14,7 @@ FROM rockylinux/rockylinux:8
ARG TARGETARCH
RUN dnf install -y wget libgomp libaio libatomic && \
RUN dnf install -y wget libgomp libaio libatomic openblas-devel && \
rm -rf /var/cache/yum/*
COPY ./bin/ /milvus/bin/

View File

@ -14,7 +14,7 @@ FROM ubuntu:focal-20220426
ARG TARGETARCH
RUN apt-get update && \
apt-get install -y --no-install-recommends curl ca-certificates libaio-dev libgomp1 && \
apt-get install -y --no-install-recommends curl ca-certificates libaio-dev libgomp1 libopenblas-dev && \
apt-get remove --purge -y && \
rm -rf /var/lib/apt/lists/*