From 4f92d4c75ff22feef61ba79072251236925957f5 Mon Sep 17 00:00:00 2001 From: Mikael Hagen Johansen Date: Tue, 13 Jan 2026 18:57:23 +0100 Subject: [PATCH] Use Ubuntu 24.04 runtime for newer libstdc++ --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1574a5b..daf94ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,9 +52,10 @@ RUN cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=ExternalLibraries/vcpkg/scripts/b && test -f /app/Output/MainServer.elf \ && test -f /app/Output/CastServer.elf -FROM ubuntu:22.04 +FROM ubuntu:24.04 RUN apt-get update && apt-get install -y \ + libstdc++6 \ libssl3 \ libmariadb3 \ && rm -rf /var/lib/apt/lists/*