Files
builder/base/docker-bake.hcl
YoungSoo Shin 3a7a4630e5 builder: init builder base and wiringpi
Change-Id: Ia985a05fd0e02ec40f4671aea06c443e3233b17a
Signed-off-by: YoungSoo Shin <shinys000114@gmail.com>
2026-01-27 18:08:50 +09:00

35 lines
754 B
HCL

group "default" {
targets = ["focal", "jammy", "noble", "resolute"]
}
target "base_config" {
context = "."
dockerfile = "Dockerfile"
platforms = ["linux/arm64"]
}
target "focal" {
inherits = ["base_config"]
args = { UBUNTU_VER = "focal" }
tags = ["git.sys114.com/shinys000114/builder/base:focal"]
}
target "jammy" {
inherits = ["base_config"]
args = { UBUNTU_VER = "jammy" }
tags = ["git.sys114.com/shinys000114/builder/base:jammy"]
}
target "noble" {
inherits = ["base_config"]
args = { UBUNTU_VER = "noble" }
tags = ["git.sys114.com/shinys000114/builder/base:noble"]
}
target "resolute" {
inherits = ["base_config"]
args = { UBUNTU_VER = "resolute" }
tags = ["git.sys114.com/shinys000114/builder/base:resolute"]
}