We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b00afbc commit 7a73501Copy full SHA for 7a73501
ci/release-image/docker-bake.hcl
@@ -12,6 +12,9 @@ group "default" {
12
13
target "code-server" {
14
dockerfile = "ci/release-image/Dockerfile"
15
- tags = ["docker.io/codercom/code-server:${VERSION}"]
+ tags = [
16
+ "docker.io/codercom/code-server:latest",
17
+ notequal("latest",VERSION) ? "docker.io/codercom/code-server:${VERSION}" : "",
18
+ ]
19
platforms = ["linux/amd64", "linux/arm64"]
20
}
0 commit comments