| load("@io_bazel_rules_docker//container:container.bzl", "container_image", "container_layer", "container_push") |
| load("@subpar//:subpar.bzl", "par_binary") |
| load("@pydeps//:requirements.bzl", "requirement") |
| |
| par_binary( |
| name = "ripe-sync", |
| srcs = [ |
| "ripe-sync.py", |
| ], |
| deps = [ |
| requirement("requests"), |
| "//bgpwtf/cccampix/proto:ix_py_proto", |
| "//bgpwtf/cccampix/proto:ix_grpc_proto", |
| ], |
| legacy_create_init = False, |
| zip_safe = False, |
| ) |
| |
| container_layer( |
| name = "layer_bin", |
| files = [ |
| "//bgpwtf/cccampix:ripe-sync.par", |
| "//bgpwtf/cccampix/irr:irr", |
| "//bgpwtf/cccampix/pgpencryptor:pgpencryptor", |
| "//bgpwtf/cccampix/peeringdb:peeringdb", |
| "//bgpwtf/cccampix/verifier:verifier", |
| "//bgpwtf/cccampix/frontend:frontend.par", |
| ], |
| directory = "/ix/", |
| ) |
| |
| container_image( |
| name = "runtime", |
| base = "@prodimage-bionic//image", |
| layers = [ |
| ":layer_bin", |
| "//bgpwtf/cccampix/octorpki:layer_bin", |
| "//bgpwtf/cccampix/octorpki:layer_tals", |
| ], |
| ) |
| |
| container_push( |
| name = "push", |
| image = ":runtime", |
| format = "Docker", |
| registry = "registry.k0.hswaw.net", |
| repository = "bgpwtf/cccampix", |
| tag = "{BUILD_TIMESTAMP}-{STABLE_GIT_COMMIT}", |
| ) |