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"] }