fusion-energy / brep_to_h5m

Converts Brep CAD geometry files to h5m geometry files compatible with DAGMC simulations
MIT License
1 stars 2 forks source link

Adding gmsh to the docker image #9

Closed shimwell closed 1 year ago

shimwell commented 2 years ago

I've found two ways of adding gmsh to the CI or a docker image and just wanted to note them down

RUN apt install python3-gmsh -y

or

RUN conda install -c conda-forge gmsh
RUN conda install -c conda-forge python-gmsh

I originally thought RUN apt-get install ffmpeg libsm6 libxext6 -y was needed as well but apparently not

shimwell commented 1 year ago

solved