From 5eddf6dfa578c0815ff1b35f6bb1b6746248faa4 Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Thu, 25 Mar 2021 18:18:10 +0000 Subject: [PATCH] moved to specific versions for embree and moab --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9a41b7c08e..89fec615ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,7 @@ RUN if [ "$include_dagmc" = "true" ] ; \ # Clone and install Embree RUN if [ "$include_dagmc" = "true" ] ; \ - then git clone --single-branch --branch master https://github.com/embree/embree.git ; \ + then git clone --single-branch --branch v3.12.2 https://github.com/embree/embree.git ; \ cd embree ; \ mkdir build ; \ cd build ; \ @@ -81,7 +81,7 @@ RUN if [ "$include_dagmc" = "true" ] ; \ mkdir MOAB ; \ cd MOAB ; \ mkdir build ; \ - git clone --single-branch --branch master https://bitbucket.org/fathomteam/moab.git ; \ + git clone --single-branch --branch 5.2.1 https://bitbucket.org/fathomteam/moab.git ; \ cd build ; \ cmake ../moab -DENABLE_HDF5=ON \ -DENABLE_NETCDF=ON \