Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

DockerFiles Fail to Build #86

@cooperpellaton

Description

@cooperpellaton

When attempting to build either the CPU only or GPU dockerfiles I am greeted with

fatal error: mkl_blas.h: No such file or directory
  #include <mkl_blas.h>

Assuming this was because the MKL install was not being bootstrapped during the install, I added the following to my dockerfile

# Install Intel MKL.
RUN  apt-get update \
  && apt-get install -y wget \
  && rm -rf /var/lib/apt/lists/*
RUN wget http://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB
RUN sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB
RUN sudo sh -c 'echo deb http://apt.repos.intel.com/mkl all main > /etc/apt/sources.list.d/intel-mkl.list'
RUN sudo apt-get update
RUN sudo apt-get install -y intel-mkl-64bit-2017.3-056

But I am still met with the same error.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions