mirror of
https://github.com/cdr/code-server.git
synced 2026-04-01 11:04:24 +02:00
Update Debian base image to 13 (trixie) (#7705)
This commit is contained in:
parent
d7599ae360
commit
44fc46316f
2 changed files with 14 additions and 2 deletions
|
|
@ -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/
|
||||
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue