home-assistant-addons/snapcast/docker-bake.hcl

23 lines
391 B
HCL
Raw Normal View History

2023-08-08 17:29:03 +00:00
variable "REG" {
default = "registry.serguzim.me"
}
variable "REPO" {
default = "smarthome/audio"
}
variable "TAG" {
default = "latest"
}
group "default" {
targets = ["production"]
}
target "production" {
dockerfile = "./Dockerfile"
output = ["type=docker"]
tags = ["${REG}/${REPO}:latest", "${REG}/${REPO}:${TAG}"]
args = {
BUILD_FROM = "ghcr.io/home-assistant/amd64-base"
}
}