File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ FROM mcr.microsoft.com/devcontainers/rust:dev-1-bookworm
3
3
ARG TARGETPLATFORM
4
4
5
5
RUN apt-get update && apt-get install -y build-essential cmake libclang-dev lldb \
6
- nodejs npm hyperfine
6
+ nodejs npm hyperfine \
7
+ libblas-dev liblapack-dev libopenblas-dev
7
8
8
9
COPY .env /tmp/.env
9
10
COPY .devcontainer/install.sh /tmp/install.sh
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ ARG GIT_V_TAG
8
8
ARG PROFILE=release
9
9
ARG FEATURES
10
10
11
- RUN apt-get update && apt-get install -y llvm-dev libclang-dev clang cmake binutils
11
+ RUN apt-get update && apt-get install -y llvm-dev libclang-dev clang cmake binutils \
12
+ libblas-dev liblapack-dev libopenblas-dev
12
13
13
14
WORKDIR /usr/src/edge-runtime
14
15
@@ -30,7 +31,10 @@ RUN objcopy --strip-debug \
30
31
# Application runtime without ONNX
31
32
FROM debian:bookworm-slim as edge-runtime-base
32
33
33
- RUN apt-get update && apt-get install -y libssl-dev && rm -rf /var/lib/apt/lists/*
34
+ RUN apt-get update && apt-get install -y libssl-dev \
35
+ libblas-dev liblapack-dev libopenblas-dev \
36
+ && rm -rf /var/lib/apt/lists/*
37
+
34
38
RUN apt-get remove -y perl && apt-get autoremove -y
35
39
36
40
COPY --from=builder /root/edge-runtime /usr/local/bin/edge-runtime
You can’t perform that action at this time.
0 commit comments