From a13fa091dd6bad35c44076cb7c46cb7bcc17a7ac Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Wed, 8 Oct 2025 17:04:27 -0400 Subject: [PATCH] script/build-with-container: add debian 13 (trixie) Signed-off-by: John Mulligan --- src/script/build-with-container.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/script/build-with-container.py b/src/script/build-with-container.py index 421ec34dea40b..553b6b722e82d 100755 --- a/src/script/build-with-container.py +++ b/src/script/build-with-container.py @@ -113,6 +113,7 @@ class DistroKind(StrEnum): UBUNTU2204 = "ubuntu22.04" UBUNTU2404 = "ubuntu24.04" DEBIAN12 = "debian12" + DEBIAN13 = "debian13" @classmethod def uses_dnf(cls): @@ -165,6 +166,9 @@ class DistroKind(StrEnum): str(cls.DEBIAN12): cls.DEBIAN12, "debian-bookworm": cls.DEBIAN12, "bookworm": cls.DEBIAN12, + str(cls.DEBIAN13): cls.DEBIAN13, + "debian-trixie": cls.DEBIAN13, + "trixie": cls.DEBIAN13, } @classmethod @@ -189,6 +193,7 @@ class DefaultImage(StrEnum): UBUNTU2404 = "docker.io/ubuntu:24.04" # debian DEBIAN12 = "docker.io/debian:bookworm" + DEBIAN13 = "docker.io/debian:trixie" class CommandFailed(Exception): -- 2.39.5