mirror of
https://github.com/YuCat-OVO/BaiduNetdisk-Docker
synced 2025-05-10 20:10:04 +08:00
26 lines
497 B
HCL
26 lines
497 B
HCL
variable "DEFAULT_TAG" {
|
|
default = "baidunetdisk-docker:latest"
|
|
}
|
|
|
|
group "linux-amd64" {
|
|
targets = ["image-amd64"]
|
|
}
|
|
group "linux-arm64" {
|
|
targets = ["image-arm64"]
|
|
}
|
|
|
|
target "docker-metadata-action" {
|
|
tags = ["${DEFAULT_TAG}"]
|
|
}
|
|
|
|
target "image-amd64" {
|
|
platforms = ["linux/amd64"]
|
|
inherits = ["docker-metadata-action"]
|
|
dockerfile = "Dockerfile"
|
|
}
|
|
target "image-arm64" {
|
|
platforms = ["linux/arm64"]
|
|
inherits = ["docker-metadata-action"]
|
|
dockerfile = "Dockerfile.arm64"
|
|
}
|