From 0da00348a7501d92b0d940f13064eb7afb5c7e92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Cs=C3=A1rdi?= Date: Sun, 18 Aug 2024 22:13:45 +0200 Subject: [PATCH] Install openblas on MKL containers Closes #71. --- containers/intel/Dockerfile | 3 ++- containers/mkl/Dockerfile | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/containers/intel/Dockerfile b/containers/intel/Dockerfile index c191087b..ed0846e2 100644 --- a/containers/intel/Dockerfile +++ b/containers/intel/Dockerfile @@ -84,8 +84,9 @@ COPY r-check /usr/local/bin # ------------------------------------------------------------------------------------ # Useful system packages +# openblas-threads is needed for binary packages linking to LAPACK, built on vanilla Fedora -RUN dnf install -y pkg-config devscripts-checkbashisms qpdf git tidy procps && \ +RUN dnf install -y pkg-config devscripts-checkbashisms qpdf git tidy procps openblas-threads && \ dnf clean all # ------------------------------------------------------------------------------------ diff --git a/containers/mkl/Dockerfile b/containers/mkl/Dockerfile index 6c58a9ef..102fd5bd 100644 --- a/containers/mkl/Dockerfile +++ b/containers/mkl/Dockerfile @@ -72,8 +72,10 @@ COPY r-check /usr/local/bin # ------------------------------------------------------------------------------------ # Useful system packages +# openblas-threads is needed for binary packages linking to LAPACK, built on vanilla Fedora -RUN dnf install -y pkg-config devscripts-checkbashisms qpdf git tidy procps +RUN dnf install -y pkg-config devscripts-checkbashisms qpdf git tidy procps openblas-threads && \ + dnf clean all # ------------------------------------------------------------------------------------ # Copy MKL environment