From 546d915d3241e983f86432012c4c807c4792b3ff Mon Sep 17 00:00:00 2001 From: Danny Kopping Date: Tue, 25 Feb 2025 14:33:17 +0200 Subject: [PATCH] chore: install `libgbm-dev` to allow headless chrome e2e tests to run (#16695) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this lib, Chrome can’t set up its offscreen rendering buffers - apparently. I've validated this manually in my workspace. Signed-off-by: Danny Kopping --- dogfood/contents/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/dogfood/contents/Dockerfile b/dogfood/contents/Dockerfile index 8c3613f59d..1aac42579b 100644 --- a/dogfood/contents/Dockerfile +++ b/dogfood/contents/Dockerfile @@ -160,6 +160,7 @@ RUN apt-get update --quiet && apt-get install --yes \ kubectl \ language-pack-en \ less \ + libgbm-dev \ libssl-dev \ lsb-release \ man \