2023-04-03 12:13:17 -04:00
|
|
|
"""
|
2023-11-28 04:52:37 -05:00
|
|
|
This file contains container images that are pulled from container registries.
|
2023-04-03 12:13:17 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
load("@rules_oci//oci:pull.bzl", "oci_pull")
|
|
|
|
|
|
|
|
def containter_image_deps():
|
|
|
|
oci_pull(
|
|
|
|
name = "distroless_static",
|
2024-09-19 07:23:09 -04:00
|
|
|
digest = "sha256:b033683de7de51d8cce5aa4b47c1b9906786f6256017ca8b17b2551947fcf6d8",
|
2023-04-03 12:13:17 -04:00
|
|
|
image = "gcr.io/distroless/static",
|
|
|
|
platforms = [
|
|
|
|
"linux/amd64",
|
|
|
|
"linux/arm64",
|
|
|
|
],
|
|
|
|
)
|
2023-11-28 04:52:37 -05:00
|
|
|
oci_pull(
|
|
|
|
name = "libvirtd_base",
|
2024-06-11 11:44:55 -04:00
|
|
|
digest = "sha256:99dbf3cf69b3f97cb0158bde152c9bc7c2a96458cf462527ee80b75754f572a7",
|
2023-11-28 04:52:37 -05:00
|
|
|
image = "ghcr.io/edgelesssys/constellation/libvirtd-base",
|
|
|
|
)
|