diff --git a/ogscm/recipes/ogs.py b/ogscm/recipes/ogs.py index b04e598a042b57a4030baeb5418a5c80ec8b1a2d..d8ebe7a5dda20f53cac8173985e4b74aedcc242c 100644 --- a/ogscm/recipes/ogs.py +++ b/ogscm/recipes/ogs.py @@ -646,5 +646,11 @@ if local_args.ogs != "off" and local_args.ogs != "clean": # Required for vtk from Python (for notebooks, VTUInterface) # https://github.com/Kaggle/docker-python/pull/358 # xvfb for PyVista -Stage0 += packages(apt=["libgl1", "xvfb"], yum=["mesa-libGL", "xorg-x11-server-Xvfb"]) -Stage1 += packages(apt=["libgl1", "xvfb"], yum=["mesa-libGL", "xorg-x11-server-Xvfb"]) +Stage0 += packages( + apt=["libgl1", "xvfb", "libglu1-mesa"], + yum=["mesa-libGL", "xorg-x11-server-Xvfb", "mesa-libGLU"], +) +Stage1 += packages( + apt=["libgl1", "xvfb", "libglu1-mesa"], + yum=["mesa-libGL", "xorg-x11-server-Xvfb", "mesa-libGLU"], +)