mirror of
https://github.com/N0rthernL1ghts/bbk-docker.git
synced 2024-11-23 12:31:09 +01:00
23 lines
479 B
HCL
23 lines
479 B
HCL
group "default" {
|
|
targets = ["1_0"]
|
|
}
|
|
|
|
target "build-dockerfile" {
|
|
dockerfile = "Dockerfile"
|
|
}
|
|
|
|
target "build-platforms" {
|
|
platforms = ["linux/i386", "linux/amd64", "linux/armhf", "linux/aarch64"]
|
|
}
|
|
|
|
target "build-common" {
|
|
pull = true
|
|
}
|
|
|
|
target "1_0" {
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
|
tags = ["docker.io/nlss/bbk-cli:1", "docker.io/nlss/bbk-cli:1.0", "docker.io/nlss/bbk-cli:latest"]
|
|
args = {
|
|
BBKCLI_VERSION = "1.0"
|
|
}
|
|
} |