From 0455ea2371f93a85c24e73b43c70f6052ec27728 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 5 Oct 2023 08:33:29 -0400 Subject: [PATCH] build(docker): fix docker build (#317) --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ee9b7c215..6ea14975f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,8 @@ RUN apt-get update -y \ build-essential \ nodejs \ npm \ + pkg-config \ + libopenblas-dev \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* @@ -23,7 +25,7 @@ WORKDIR /build COPY . . # setup python requirements -RUN python -m pip install --no-cache-dir --upgrade pip && \ +RUN python -m pip install --no-cache-dir --upgrade pip setuptools wheel && \ python -m pip install --no-cache-dir -r requirements.txt # compile locales