composition/docker-bake.hcl
Garen Tyler 5ad4ad7cc2
Some checks failed
ci / Build and push Docker images (push) Successful in 20m41s
clippy / Run rust-clippy analyzing (push) Failing after 1m55s
Simplify build process and improve README
2025-05-01 20:48:25 -06:00

25 lines
429 B
HCL

variable "REGISTRY" {
default = "git.garen.dev/garentyler"
}
variable "GITHUB_SHA" {
default = "latest"
}
variable "RELEASE_VERSION" {
default = "latest"
}
target "default" {
context = "."
dockerfile = "Dockerfile"
platforms = ["linux/amd64", "linux/arm64"]
tags = [
"${REGISTRY}/composition:${RELEASE_VERSION}",
"${REGISTRY}/composition:${GITHUB_SHA}"
]
args = {
FEATURES = "server,proxy"
}
}