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", |
Tim Windelschmidt | 739f1d2 | 2023-04-06 13:19:39 +0200 | [diff] [blame] | 9 | "gcr.io/monogon-infra/cloud/bmsrv:{IMAGE_TAG}": "//cloud/bmaas/server/cmd:cmd_container", |
Tim Windelschmidt | 1fdab13 | 2023-03-30 15:04:16 +0200 | [diff] [blame] | 10 | }, |
| 11 | ) |
| 12 | |
| 13 | container_push( |
| 14 | name = "push", |
| 15 | bundle = ":cloud_containers", |
| 16 | format = "Docker", |
| 17 | ) |