updated Dockerfile to clone from main openmc-dev GitHub repo

This commit is contained in:
Will Boyd 2018-09-23 13:51:16 -04:00
parent b395060793
commit 84bfa09c82

View file

@ -33,7 +33,7 @@ RUN git clone https://github.com/njoy/NJOY2016 /opt/NJOY2016 && \
cmake -Dstatic=on .. && make 2>/dev/null && make install
# Clone and install OpenMC
RUN git clone https://github.com/wbinventor/openmc.git /opt/openmc && \
RUN git clone https://github.com/openmc-dev/openmc.git /opt/openmc && \
cd /opt/openmc && mkdir -p build && cd build && \
cmake -Doptimize=on -DHDF5_PREFER_PARALLEL=on .. && \
make && make install && \