From 952d58ef9a2a7e4df7343306c28511913d55cbf4 Mon Sep 17 00:00:00 2001 From: luocai Date: Wed, 20 Nov 2024 16:15:34 +0800 Subject: [PATCH] support c++20 for ubuntu2204. --- Dockerfiles/ubuntu2204.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfiles/ubuntu2204.dockerfile b/Dockerfiles/ubuntu2204.dockerfile index f2ce46d..447bd87 100644 --- a/Dockerfiles/ubuntu2204.dockerfile +++ b/Dockerfiles/ubuntu2204.dockerfile @@ -53,7 +53,7 @@ RUN cd /root \ && apt update \ && apt install -y software-properties-common \ && add-apt-repository -y ppa:ubuntu-toolchain-r/test \ - && apt install gcc-13 g++-13 \ + && apt install -y gcc-13 g++-13 \ && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 60 \ && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 60 \ && update-alternatives --config gcc \