From 6e5fee9bd549ad0e64ed635abee101a9fda6d3af Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Wed, 14 Dec 2022 11:53:54 +0100 Subject: [PATCH] [ogs] Added libgl1-mesa-glx. --- ogscm/recipes/ogs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ogscm/recipes/ogs.py b/ogscm/recipes/ogs.py index d8ebe7a..f967d17 100644 --- a/ogscm/recipes/ogs.py +++ b/ogscm/recipes/ogs.py @@ -647,10 +647,10 @@ if local_args.ogs != "off" and local_args.ogs != "clean": # https://github.com/Kaggle/docker-python/pull/358 # xvfb for PyVista Stage0 += packages( - apt=["libgl1", "xvfb", "libglu1-mesa"], + apt=["libgl1", "xvfb", "libgl1-mesa-glx", "libglu1-mesa"], yum=["mesa-libGL", "xorg-x11-server-Xvfb", "mesa-libGLU"], ) Stage1 += packages( - apt=["libgl1", "xvfb", "libglu1-mesa"], + apt=["libgl1", "xvfb", "libgl1-mesa-glx", "libglu1-mesa"], yum=["mesa-libGL", "xorg-x11-server-Xvfb", "mesa-libGLU"], ) -- GitLab