From 9e72a706ece84dc242c26eb2d926ef6735ec9014 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Sun, 26 Apr 2026 23:15:25 +0200 Subject: [PATCH] feat: update base image in Dockerfile to Ubuntu Noble 24.04 Change the base image from 'buildpack-deps:jammy-curl' to 'buildpack-deps:noble-curl' for improved compatibility. --- .github/.devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/.devcontainer/Dockerfile b/.github/.devcontainer/Dockerfile index dba0653..37d5993 100644 --- a/.github/.devcontainer/Dockerfile +++ b/.github/.devcontainer/Dockerfile @@ -1,2 +1,2 @@ -ARG IMAGE="buildpack-deps:jammy-curl" +ARG IMAGE="buildpack-deps:noble-curl" FROM ${IMAGE}