constellation/bazel/toolchains/container_images.bzl
renovate[bot] f8e0ca4bb6
deps: update libvirtd_base Docker digest to 99dbf3c (#3157)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-11 17:44:55 +02:00

22 lines
653 B
Python

"""
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:41972110a1c1a5c0b6adb283e8aa092c43c31f7c5d79b8656fbffff2c3e61f05",
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",
)