Skip to content

Commit

Permalink
container base image: include gmsh
Browse files Browse the repository at this point in the history
  • Loading branch information
joostvanzwieten committed Sep 2, 2022
1 parent de0ea7c commit e51d0f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/container/build_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
container.run('apt', 'update')
# Package `libtbb2` is required when using Intel MKL with environment
# variable `MKL_THREADING_LAYER` set to `TBB`, which is nowadays the default.
container.run('apt', 'install', '-y', '--no-install-recommends', 'python3', 'python3-pip', 'python3-wheel', 'python3-ipython', 'python3-numpy', 'python3-scipy', 'python3-matplotlib', 'python3-pil', 'python3-meshio', 'libmkl-rt', 'libomp-dev', 'libtbb2', env=dict(DEBIAN_FRONTEND='noninteractive'))
container.run('apt', 'install', '-y', '--no-install-recommends', 'python3', 'python3-pip', 'python3-wheel', 'python3-ipython', 'python3-numpy', 'python3-scipy', 'python3-matplotlib', 'python3-pil', 'python3-meshio', 'libmkl-rt', 'libomp-dev', 'libtbb2', 'python3-gmsh', env=dict(DEBIAN_FRONTEND='noninteractive'))
container.run('pip', 'install', '--no-cache-dir', 'bottombar', 'treelog', 'stringly')
container.add_label('org.opencontainers.image.url', 'https://github.com/evalf/nutils')
container.add_label('org.opencontainers.image.source', 'https://github.com/evalf/nutils')
Expand Down

0 comments on commit e51d0f9

Please sign in to comment.