...
1# buildifier: disable=module-docstring
2load("//:third_party_images.bzl", "third_party_container_dep")
3
4REPOSITORY = "library/alpine"
5
6third_party_container_dep(
7 name = "alpine",
8 registry = "index.docker.io",
9 digest = "sha256:695ae78b4957fef4e53adc51febd07f5401eb36fcd80fff3e5107a2b4aa42ace",
10 repository = REPOSITORY,
11 tag = "3.18.6",
12)
13
14third_party_container_dep(
15 name = "ubuntu",
16 registry = "index.docker.io",
17 digest = "sha256:695ae78b4957fef4e53adc51febd07f5401eb36fcd80fff3e5107a2b4aa42ace",
18 repository = "library/ubuntu",
19 destination_repo = "mycustomrepo/ubuntu",
20 tag = "3.18.6",
21)
View as plain text