Update Debian base image to 13 (trixie) (#7705)

This commit is contained in:
gwe32 2026-03-20 19:57:17 +01:00 committed by GitHub
parent d7599ae360
commit 44fc46316f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 2 deletions

View file

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:experimental
ARG BASE=debian:12
ARG BASE=debian:13
FROM scratch AS packages
COPY release-packages/code-server*.deb /tmp/

View file

@ -16,6 +16,7 @@ variable "GITHUB_REGISTRY" {
group "default" {
targets = [
"code-server-debian-13",
"code-server-debian-12",
"code-server-ubuntu-focal",
"code-server-ubuntu-noble",
@ -48,13 +49,24 @@ function "gen_tags_for_docker_and_ghcr" {
)
}
target "code-server-debian-12" {
target "code-server-debian-13" {
dockerfile = "ci/release-image/Dockerfile"
tags = concat(
gen_tags_for_docker_and_ghcr(""),
gen_tags_for_docker_and_ghcr("debian"),
gen_tags_for_docker_and_ghcr("trixie"),
)
platforms = ["linux/amd64", "linux/arm64"]
}
target "code-server-debian-12" {
dockerfile = "ci/release-image/Dockerfile"
tags = concat(
gen_tags_for_docker_and_ghcr("bookworm"),
)
args = {
BASE = "debian:12"
}
platforms = ["linux/amd64", "linux/arm64"]
}