...
1load("//hack/build/rules/container:index.bzl", "container_push")
2
3container_push(
4 name = "alpine_container_push",
5 digest = "@alpine//:digest",
6 from_third_party = True,
7 image = "@alpine//:alpine",
8 image_name = "library/alpine",
9 repository_file = "//hack/build/rules/container:thirdparty-repo",
10 tag = "3.18.6",
11 visibility = ["//visibility:public"],
12)
13
14container_push(
15 name = "ubuntu_container_push",
16 digest = "@ubuntu//:digest",
17 from_third_party = True,
18 image = "@ubuntu//:ubuntu",
19 image_name = "mycustomrepo/ubuntu",
20 repository_file = "//hack/build/rules/container:thirdparty-repo",
21 tag = "3.18.6",
22 visibility = ["//visibility:public"],
23)
View as plain text