From 6f1bf573a15c5eb6af27df4ef56c13d65a6cb671 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sat, 5 Sep 2026 17:32:56 -0400 Subject: [PATCH] build(Linux): add Ubuntu 26.10 Docker bake target Updates `docker-bake.hcl` to include a new `ubuntu-26-10` target and adds it to both the `default` and `artifacts` groups. The new target inherits from `_sunshine`, uses `BASE=ubuntu` and `TAG=26.10`, and sets the matching image variant label. --- docker-bake.hcl | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docker-bake.hcl b/docker-bake.hcl index e4f1318b3e2..e1a40b00444 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -10,6 +10,7 @@ group "default" { "ubuntu-22-04", "ubuntu-24-04", "ubuntu-26-04", + "ubuntu-26-10", ] } @@ -21,6 +22,7 @@ group "artifacts" { "ubuntu-22-04", "ubuntu-24-04", "ubuntu-26-04", + "ubuntu-26-10", ] } @@ -86,3 +88,14 @@ target "ubuntu-26-04" { "dev.lizardbyte.image.variant" = "ubuntu-26.04" } } + +target "ubuntu-26-10" { + inherits = ["_sunshine"] + args = { + BASE = "ubuntu" + TAG = "26.10" + } + labels = { + "dev.lizardbyte.image.variant" = "ubuntu-26.10" + } +}