Skip to content

Commit

Permalink
Fix for SciPy cmake error (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJaeger authored Dec 1, 2021
1 parent 9f38884 commit 812419e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,16 @@ RUN apt-get update && \
software-properties-common \
python2.7 python-pip \
python3-pip \
jq
jq \
libblas-dev \
liblapack-dev \
libatlas-base-dev \
gfortran

# Install MRTRIX3 dependencies
RUN apt-get install -y --no-install-recommends \
clang \
git \
python-numpy \
libeigen3-dev \
zlib1g-dev \
libqt4-opengl-dev \
Expand Down
6 changes: 5 additions & 1 deletion docker/Dockerfile_develop
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ RUN apt-get update && \
nano \
software-properties-common \
python2.7 python-pip \
python3-pip
python3-pip \
libblas-dev \
liblapack-dev \
libatlas-base-dev \
gfortran

# Install MRTRIX3 dependencies
RUN apt-get install -y --no-install-recommends \
Expand Down
8 changes: 6 additions & 2 deletions docker/Dockerfile_release
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,17 @@ RUN apt-get update && \
nano \
software-properties-common \
python2.7 python-pip \
python3-pip
python3-pip \
libblas-dev \
liblapack-dev \
libatlas-base-dev \
gfortran

# Install MRTRIX3 dependencies
RUN apt-get install -y --no-install-recommends \
clang \
git \
python-numpy \
# python-numpy \
libeigen3-dev \
zlib1g-dev \
libqt4-opengl-dev \
Expand Down

0 comments on commit 812419e

Please sign in to comment.