Skip to content

Commit

Permalink
Install openblas on MKL containers
Browse files Browse the repository at this point in the history
Closes #71.
  • Loading branch information
gaborcsardi committed Aug 18, 2024
1 parent 5c781a3 commit 0da0034
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion containers/intel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

# ------------------------------------------------------------------------------------
Expand Down
4 changes: 3 additions & 1 deletion containers/mkl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0da0034

Please sign in to comment.