From 72adc97caef3f2990a6df37daf4c04c73987978c Mon Sep 17 00:00:00 2001 From: project516 <138796702+Project516@users.noreply.github.com> Date: Mon, 16 Mar 2026 08:39:28 -0500 Subject: [PATCH] Update Dockerfile fix docker build failing --- .devcontainer/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 970b2bd6d..b97d9efad 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -9,6 +9,7 @@ RUN apt-get update \ && apt-get update \ && apt-get install -y \ build-essential \ + gcc-14 g++-14 \ python3 \ ninja-build \ meson \ @@ -16,6 +17,9 @@ RUN apt-get update \ libgl-dev \ libglu1-mesa-dev \ libpthread-stubs0-dev \ + # Set GCC 14 as the default compiler + && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 100 \ + && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 100 \ # Clean up lol && apt-get autoremove -y \ && apt-get clean -y \