docker-bake.hcl 412 B

1234567891011121314151617181920212223242526
  1. variable "ALPINE_VERSION" { default = "3.22" }
  2. group "default" {
  3. targets = [
  4. "ci-runner",
  5. ]
  6. }
  7. target "ci-runner" {
  8. args = {
  9. ALPINE_VERSION = "3.22"
  10. }
  11. context = "."
  12. dockerfile = "./Dockerfile"
  13. platforms = [
  14. "linux/amd64",
  15. "linux/arm64",
  16. "linux/arm/v7",
  17. "linux/ppc64le",
  18. "linux/riscv64",
  19. ]
  20. pull = true
  21. tags = [
  22. "ghcr.io/techarohq/anubis/ci-runner:latest"
  23. ]
  24. }