enhance: add openblas in runtime env (#31972)

pr: #31974

Signed-off-by: Liang Huang <sammy.huang@zilliz.com>
pull/31413/head
sammy.huang 2024-04-08 09:03:17 +08:00 committed by GitHub
parent 312d570855
commit 429f0c525e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 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 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/*