Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "msre_docker/openmc_install_scripts"]
path = msre_docker/openmc_install_scripts
url = git@github.com:bvhoof/openmc_install_scripts.git
9 changes: 5 additions & 4 deletions msre_docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,17 @@ COPY openmc_install_scripts/Debian11/embree-install.sh .
RUN ./embree-install.sh "$compile_cores"

COPY openmc_install_scripts/Debian11/moab-install.sh .
RUN ./moab-install.sh "$compile_cores"
RUN sudo mkdir -p /opt/lib/cmake && sudo ./moab-install.sh "$compile_cores"

COPY openmc_install_scripts/Debian11/double_down-install.sh .
RUN ./double_down-install.sh "$compile_cores"
RUN DEBIAN_FRONTEND=noninteractive && sudo ./double_down-install.sh "$compile_cores"

COPY openmc_install_scripts/Debian11/dagmc-install.sh .
RUN DEBIAN_FRONTEND=noninteractive && ./dagmc-install.sh "$compile_cores"
RUN DEBIAN_FRONTEND=noninteractive && sudo ./dagmc-install.sh "$compile_cores"

COPY openmc_install_scripts/Debian11/openmc-install.sh .
RUN DEBIAN_FRONTEND=noninteractive && ./openmc-install.sh "$compile_cores"
RUN DEBIAN_FRONTEND=noninteractive && sudo ./openmc-install.sh "$compile_cores"
ENV PATH="${PATH}:/usr/local/lib/bin"

#clean up a bit
RUN rm *-install.sh
Expand Down
1 change: 1 addition & 0 deletions msre_docker/openmc_install_scripts
Submodule openmc_install_scripts added at 5f459d