mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-09 18:18:49 +00:00
28 lines
523 B
HCL
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"
|
|
]
|
|
} |