Skip to content

Commit 44fc463

Browse files
authored
Update Debian base image to 13 (trixie) (#7705)
1 parent d7599ae commit 44fc463

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

ci/release-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:experimental
22

3-
ARG BASE=debian:12
3+
ARG BASE=debian:13
44
FROM scratch AS packages
55
COPY release-packages/code-server*.deb /tmp/
66

ci/release-image/docker-bake.hcl

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ variable "GITHUB_REGISTRY" {
1616

1717
group "default" {
1818
targets = [
19+
"code-server-debian-13",
1920
"code-server-debian-12",
2021
"code-server-ubuntu-focal",
2122
"code-server-ubuntu-noble",
@@ -48,13 +49,24 @@ function "gen_tags_for_docker_and_ghcr" {
4849
)
4950
}
5051

51-
target "code-server-debian-12" {
52+
target "code-server-debian-13" {
5253
dockerfile = "ci/release-image/Dockerfile"
5354
tags = concat(
5455
gen_tags_for_docker_and_ghcr(""),
5556
gen_tags_for_docker_and_ghcr("debian"),
57+
gen_tags_for_docker_and_ghcr("trixie"),
58+
)
59+
platforms = ["linux/amd64", "linux/arm64"]
60+
}
61+
62+
target "code-server-debian-12" {
63+
dockerfile = "ci/release-image/Dockerfile"
64+
tags = concat(
5665
gen_tags_for_docker_and_ghcr("bookworm"),
5766
)
67+
args = {
68+
BASE = "debian:12"
69+
}
5870
platforms = ["linux/amd64", "linux/arm64"]
5971
}
6072

0 commit comments

Comments
 (0)