mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
9c13603756
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
22 lines
653 B
Python
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:95eb83a44a62c1c27e5f0b38d26085c486d71ece83dd64540b7209536bb13f6d",
|
|
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",
|
|
)
|