From 95b590e8150e676aaf48ce0d8eb66d4c30f01441 Mon Sep 17 00:00:00 2001 From: Quinn Date: Fri, 23 May 2025 22:03:52 +0200 Subject: [PATCH] fix: add libglfw3 to the dockerfile so testing occurs correctly. --- .github/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/Dockerfile b/.github/Dockerfile index f33a57a..f8cd6c5 100644 --- a/.github/Dockerfile +++ b/.github/Dockerfile @@ -19,6 +19,7 @@ RUN apt update && apt install -y --no-install-recommends \ gcc gcc-multilib g++ mingw-w64 \ libc6-dev \ libxinerama-dev libxcursor-dev xorg-dev libglu1-mesa-dev \ + libglfw3 \ nodejs \ && rm -rf /var/lib/apt/lists/*;