diff --git a/containers/Dockerfile-test-suite-python27 b/containers/Dockerfile-test-suite-python27 index e1e08687a414029f9aeca9dc50b08b227c568b58..7a41728773436693d30ed15a2786df21ee71051e 100644 --- a/containers/Dockerfile-test-suite-python27 +++ b/containers/Dockerfile-test-suite-python27 @@ -48,10 +48,10 @@ RUN apt-get install -y libblas3 libblas-dev liblapack3 liblapack-dev \ libatlas3-base libatlas-base-dev cmake build-essential gfortran # Install pymultinest -RUN git clone https://github.com/JohannesBuchner/MultiNest \ -&& (cd MultiNest/build && cmake .. && make) +RUN git clone https://github.com/farhanferoz/MultiNest.git \ +&& (cd MultiNest/MultiNest_v3.11_CMake/multinest && mkdir build && cd build && cmake .. && make) -ENV LD_LIBRARY_PATH $HOME/MultiNest/lib: +ENV LD_LIBRARY_PATH $HOME/MultiNest/MultiNest_v3.11_CMake/multinest/lib: # Install Polychord RUN git clone https://github.com/PolyChord/PolyChordLite.git \ diff --git a/containers/Dockerfile-test-suite-python37 b/containers/Dockerfile-test-suite-python37 index 25ae9dd2e5bc3b517b49e770c831fa15d57a5cdf..763927fe448fdac7fa7d7acc0f651f14452ef7a4 100644 --- a/containers/Dockerfile-test-suite-python37 +++ b/containers/Dockerfile-test-suite-python37 @@ -52,10 +52,10 @@ RUN apt-get install -y libblas3 libblas-dev liblapack3 liblapack-dev \ libatlas3-base libatlas-base-dev cmake build-essential gfortran # Install pymultinest -RUN git clone https://github.com/JohannesBuchner/MultiNest \ -&& (cd MultiNest/build && cmake .. && make) +RUN git clone https://github.com/farhanferoz/MultiNest.git \ +&& (cd MultiNest/MultiNest_v3.11_CMake/multinest && mkdir build && cd build && cmake .. && make) -ENV LD_LIBRARY_PATH $HOME/MultiNest/lib: +ENV LD_LIBRARY_PATH $HOME/MultiNest/MultiNest_v3.11_CMake/multinest/lib: # Install Polychord RUN git clone https://github.com/PolyChord/PolyChordLite.git \