File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:experimental
22
3- ARG BASE=debian:12
3+ ARG BASE=debian:13
44FROM scratch AS packages
55COPY release-packages/code-server*.deb /tmp/
66
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ variable "GITHUB_REGISTRY" {
1616
1717group "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
You can’t perform that action at this time.
0 commit comments