mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-21 14:28:54 -04:00

* mini-constellation: pin swtpm to v0.8.2 * containers: update libvirtd_base image --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems>
21 lines
653 B
Python
21 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:3d0f463de06b7ddff27684ec3bfd0b54a425149d0f8685308b1fdf297b0265e9",
|
|
image = "gcr.io/distroless/static",
|
|
platforms = [
|
|
"linux/amd64",
|
|
"linux/arm64",
|
|
],
|
|
)
|
|
oci_pull(
|
|
name = "libvirtd_base",
|
|
digest = "sha256:f23e0f587860c841adde25b1b4f0d99aa4fbce1c92b01b5b46ab5fa35980a135",
|
|
image = "ghcr.io/edgelesssys/constellation/libvirtd-base",
|
|
)
|