-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #165 from fusion-energy/develop
split docker file
- Loading branch information
Showing
3 changed files
with
51 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
FROM mcr.microsoft.com/vscode/devcontainers/miniconda:0-3 as dependencies | ||
|
||
RUN apt-get --allow-releaseinfo-change update | ||
RUN apt-get --yes update && apt-get --yes upgrade | ||
|
||
# perhaps libnetcdf13 is needed for unstructured meshes in openmc | ||
# RUN apt-get --yes install libnetcdf13 | ||
|
||
# eigen3 needed for DAGMC | ||
RUN apt-get --yes install libeigen3-dev \ | ||
# sudo \ | ||
# sudo is needed during the NJOY install | ||
git \ | ||
wget \ | ||
gfortran \ | ||
g++ \ | ||
mpich \ | ||
libmpich-dev \ | ||
libhdf5-serial-dev \ | ||
libhdf5-mpich-dev \ | ||
hdf5-tools \ | ||
imagemagick \ | ||
cmake \ | ||
# libnetcdf-dev is needed to allow NETCDF on MOAB which helps with tet meshes in OpenMC | ||
libnetcdf-dev \ | ||
# libtbb-dev required for DAGMC | ||
libtbb-dev \ | ||
# libglfw3-dev required for DAGMC | ||
libglfw3-dev \ | ||
# needed for CadQuery functionality | ||
libgl1-mesa-glx \ | ||
# needed for CadQuery functionality | ||
libgl1-mesa-dev \ | ||
# needed for CadQuery functionality | ||
libglu1-mesa-dev \ | ||
# needed for CadQuery functionality | ||
freeglut3-dev \ | ||
# needed for CadQuery functionality | ||
libosmesa6 \ | ||
# needed for CadQuery functionality | ||
libosmesa6-dev \ | ||
# needed for CadQuery functionality | ||
libgles2-mesa-dev \ | ||
# needed for Gmsh functionality | ||
libxft2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters