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",
|
2023-10-11 07:43:02 -04:00
|
|
|
digest = "sha256:6706c73aae2afaa8201d63cc3dda48753c09bcd6c300762251065c0f7e602b25",
|
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",
|
2023-12-20 12:03:44 -05:00
|
|
|
digest = "sha256:231c09d1574fddb6a681b787d0d40edfd08dae15411dfe6ebab38a7fa57bf1b5",
|
2023-11-28 04:52:37 -05:00
|
|
|
image = "ghcr.io/edgelesssys/constellation/libvirtd-base",
|
|
|
|
)
|