constellation/bazel/toolchains/container_images.bzl

22 lines
653 B
Python
Raw Normal View History

"""
This file contains container images that are pulled from container registries.
"""
load("@rules_oci//oci:pull.bzl", "oci_pull")
def containter_image_deps():
oci_pull(
name = "distroless_static",
digest = "sha256:b033683de7de51d8cce5aa4b47c1b9906786f6256017ca8b17b2551947fcf6d8",
image = "gcr.io/distroless/static",
platforms = [
"linux/amd64",
"linux/arm64",
],
)
oci_pull(
name = "libvirtd_base",
digest = "sha256:99dbf3cf69b3f97cb0158bde152c9bc7c2a96458cf462527ee80b75754f572a7",
image = "ghcr.io/edgelesssys/constellation/libvirtd-base",
)