Files
anubis-mirror/docker-bake.hcl
Xe Iaso 9a711f1635 ci: amd64 only right now
Signed-off-by: Xe Iaso <me@xeiaso.net>
2025-07-18 23:39:09 +00:00

28 lines
523 B
HCL

variable "ALPINE_VERSION" { default = "3.22" }
variable "GITHUB_SHA" { default = "devel" }
group "default" {
targets = [
"osiris",
]
}
target "osiris" {
args = {
ALPINE_VERSION = "3.22"
}
context = "."
dockerfile = "./docker/osiris.Dockerfile"
platforms = [
"linux/amd64",
# "linux/arm64",
# "linux/arm/v7",
# "linux/ppc64le",
# "linux/riscv64",
]
pull = true
tags = [
"ghcr.io/techarohq/anubis/osiris:${GITHUB_SHA}",
"ghcr.io/techarohq/anubis/osiris:main"
]
}