From d0731518b329cc30f85bac51f2dc4884accfe1a2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 27 Apr 2026 13:20:29 +0000 Subject: [PATCH] fix: address CVE-2026-23410 by explicitly installing linux-libc-dev Agent-Logs-Url: https://github.com/idvoretskyi/dev/sessions/a9c704db-9ed9-46f9-b1c7-3d05fc8dd0d3 Co-authored-by: idvoretskyi <118459+idvoretskyi@users.noreply.github.com> --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index fe98ad3..9e4ef4c 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -7,6 +7,6 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ python3-venv \ python3-pip \ sudo \ - && apt-get -y upgrade linux-libc-dev \ + linux-libc-dev \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*