util-docker: Order targets in docker-bake
This improves readbility. The targets order matches that in the default group. Change-Id: I1102aeb48bc256df9b58032a327ec663e5733a98
This commit is contained in:
@@ -178,6 +178,34 @@ group "ubuntu-releases" {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
target "ubuntu-24-04_all-dependencies" {
|
||||||
|
inherits = ["common"]
|
||||||
|
dockerfile = "Dockerfile"
|
||||||
|
context = "ubuntu-24.04_all-dependencies"
|
||||||
|
tags = ["${IMAGE_URI}/ubuntu-24.04_all-dependencies:${TAG}"]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "ubuntu-22-04_all-dependencies" {
|
||||||
|
inherits = ["common"]
|
||||||
|
dockerfile = "Dockerfile"
|
||||||
|
context = "ubuntu-22.04_all-dependencies"
|
||||||
|
tags = ["${IMAGE_URI}/ubuntu-22.04_all-dependencies:${TAG}"]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "ubuntu-20-04_all-dependencies" {
|
||||||
|
inherits = ["common"]
|
||||||
|
dockerfile = "Dockerfile"
|
||||||
|
context = "ubuntu-20.04_all-dependencies"
|
||||||
|
tags = ["${IMAGE_URI}/ubuntu-20.04_all-dependencies:${TAG}"]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "ubuntu-24-04_min-dependencies" {
|
||||||
|
inherits = ["common"]
|
||||||
|
dockerfile = "Dockerfile"
|
||||||
|
context = "ubuntu-24.04_min-dependencies"
|
||||||
|
tags = ["${IMAGE_URI}/ubuntu-24.04_min-dependencies:${TAG}"]
|
||||||
|
}
|
||||||
|
|
||||||
target "gcn-gpu" {
|
target "gcn-gpu" {
|
||||||
inherits = ["common"]
|
inherits = ["common"]
|
||||||
platform = "linux/amd64" # Only build for x86.
|
platform = "linux/amd64" # Only build for x86.
|
||||||
@@ -208,38 +236,10 @@ target "systemc" {
|
|||||||
tags = ["${IMAGE_URI}/systemc-env:${TAG}"]
|
tags = ["${IMAGE_URI}/systemc-env:${TAG}"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "ubuntu-24-04_all-dependencies" {
|
|
||||||
inherits = ["common"]
|
|
||||||
dockerfile = "Dockerfile"
|
|
||||||
context = "ubuntu-24.04_all-dependencies"
|
|
||||||
tags = ["${IMAGE_URI}/ubuntu-24.04_all-dependencies:${TAG}"]
|
|
||||||
}
|
|
||||||
|
|
||||||
target "ubuntu-22-04_all-dependencies" {
|
|
||||||
inherits = ["common"]
|
|
||||||
dockerfile = "Dockerfile"
|
|
||||||
context = "ubuntu-22.04_all-dependencies"
|
|
||||||
tags = ["${IMAGE_URI}/ubuntu-22.04_all-dependencies:${TAG}"]
|
|
||||||
}
|
|
||||||
|
|
||||||
target "devcontainer" {
|
target "devcontainer" {
|
||||||
inherits = ["common"]
|
inherits = ["common"]
|
||||||
dependencies = ["devcontainer"]
|
dependencies = ["devcontainer"]
|
||||||
dockerfile = "Dockerfile"
|
dockerfile = "Dockerfile"
|
||||||
context = "devcontainer"
|
context = "devcontainer"
|
||||||
tags = ["${IMAGE_URI}/devcontainer:${TAG}"]
|
tags = ["${IMAGE_URI}/devcontainer:${TAG}"]
|
||||||
}
|
|
||||||
|
|
||||||
target "ubuntu-20-04_all-dependencies" {
|
|
||||||
inherits = ["common"]
|
|
||||||
dockerfile = "Dockerfile"
|
|
||||||
context = "ubuntu-20.04_all-dependencies"
|
|
||||||
tags = ["${IMAGE_URI}/ubuntu-20.04_all-dependencies:${TAG}"]
|
|
||||||
}
|
|
||||||
|
|
||||||
target "ubuntu-24-04_min-dependencies" {
|
|
||||||
inherits = ["common"]
|
|
||||||
dockerfile = "Dockerfile"
|
|
||||||
context = "ubuntu-24.04_min-dependencies"
|
|
||||||
tags = ["${IMAGE_URI}/ubuntu-24.04_min-dependencies:${TAG}"]
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user