2023-04-03 18:13:17 +02:00
|
|
|
"""
|
2023-11-28 10:52:37 +01:00
|
|
|
This file contains container images that are pulled from container registries.
|
2023-04-03 18:13:17 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
load("@rules_oci//oci:pull.bzl", "oci_pull")
|
|
|
|
|
|
|
|
def containter_image_deps():
|
|
|
|
oci_pull(
|
|
|
|
name = "distroless_static",
|
2025-01-30 16:36:45 +01:00
|
|
|
digest = "sha256:3f2b64ef97bd285e36132c684e6b2ae8f2723293d09aae046196cca64251acac",
|
2023-04-03 18:13:17 +02:00
|
|
|
image = "gcr.io/distroless/static",
|
|
|
|
platforms = [
|
|
|
|
"linux/amd64",
|
|
|
|
"linux/arm64",
|
|
|
|
],
|
|
|
|
)
|
2023-11-28 10:52:37 +01:00
|
|
|
oci_pull(
|
|
|
|
name = "libvirtd_base",
|
2025-02-06 08:03:14 +01:00
|
|
|
digest = "sha256:48ba2401ea66490ca1997b9d3e72b4bef7557ffbcdb1c95651fb3308f32fda58",
|
2023-11-28 10:52:37 +01:00
|
|
|
image = "ghcr.io/edgelesssys/constellation/libvirtd-base",
|
|
|
|
)
|