mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
110bf9103d
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:6706c73aae2afaa8201d63cc3dda48753c09bcd6c300762251065c0f7e602b25",
|
|
image = "gcr.io/distroless/static",
|
|
platforms = [
|
|
"linux/amd64",
|
|
"linux/arm64",
|
|
],
|
|
)
|
|
oci_pull(
|
|
name = "libvirtd_base",
|
|
digest = "sha256:231c09d1574fddb6a681b787d0d40edfd08dae15411dfe6ebab38a7fa57bf1b5",
|
|
image = "ghcr.io/edgelesssys/constellation/libvirtd-base",
|
|
)
|