From fe5f757d3bbef54ad269fd288e557cbf766cae7a Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Mon, 22 Jun 2026 13:04:22 -0400 Subject: [PATCH 1/2] fix --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6ba89fc8c..939d9a317 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,7 @@ RUN apt update \ && apt install -y libssl-dev \ nlohmann-json3-dev \ libglfw3-dev libglu1-mesa-dev libxmu-dev libglew-dev libglm-dev \ + libxkbcommon-dev \ qt6-base-dev libxerces-c-dev libexpat1-dev \ && apt clean \ && rm -rf /var/lib/apt/lists/* From 57ffb186c5be6548d4664256d36bf7e7f800dfd0 Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Mon, 22 Jun 2026 13:52:41 -0400 Subject: [PATCH 2/2] remove libssl because we use solar md5 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 939d9a317..122b278a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,8 +23,7 @@ RUN apt update \ && rm -rf /var/lib/apt/lists/* RUN apt update \ - && apt install -y libssl-dev \ - nlohmann-json3-dev \ + && apt install -y nlohmann-json3-dev \ libglfw3-dev libglu1-mesa-dev libxmu-dev libglew-dev libglm-dev \ libxkbcommon-dev \ qt6-base-dev libxerces-c-dev libexpat1-dev \