From 42f4125e8191376e51f062faeb129c0e90fea810 Mon Sep 17 00:00:00 2001 From: Karthik Subbarao Date: Fri, 1 May 2026 18:00:50 -0500 Subject: [PATCH] docker update test (#1007) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed the ubuntu-toolchain-r/test PPA and software-properties-common from the Dockerfile because the PPA's Launchpad API call was consistently timing out in CI, and no installed package actually comes from that PPA — Ubuntu Noble already provides GCC 13 via build-essential --------- Signed-off-by: Karthik Subbarao (cherry picked from commit cabb67073e3806054dfe838376c351a2d07d7ae8) --- .devcontainer/Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index cca5a85ae..26d48bdf5 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -11,10 +11,6 @@ ENV DEBIAN_FRONTEND=noninteractive # Install system dependencies RUN apt-get update && apt-get install -y \ - software-properties-common -RUN add-apt-repository ppa:ubuntu-toolchain-r/test && apt update - -RUN apt update && apt-get install -y \ libssl-dev \ build-essential \ git \