Tim Windelschmidt | 1fdab13 | 2023-03-30 15:04:16 +0200 | [diff] [blame] | 1 | load("@io_bazel_rules_docker//container:bundle.bzl", "container_bundle") |
| 2 | load("@io_bazel_rules_docker//contrib:push-all.bzl", "container_push") |
| 3 | |
| 4 | container_bundle( |
| 5 | name = "cloud_containers", |
| 6 | images = { |
| 7 | "gcr.io/monogon-infra/cloud/apigw:{IMAGE_TAG}": "//cloud/apigw:apigw_container", |
| 8 | "gcr.io/monogon-infra/cloud/shepherd/equinix:{IMAGE_TAG}": "//cloud/shepherd/equinix/manager/server:server_container", |
| 9 | }, |
| 10 | ) |
| 11 | |
| 12 | container_push( |
| 13 | name = "push", |
| 14 | bundle = ":cloud_containers", |
| 15 | format = "Docker", |
| 16 | ) |