mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-04 04:54:15 -04:00
![renovate[bot]](/assets/img/avatar_default.png)
* deps: update bazel (plugins) Co-Authored-By: Markus Rudy <mr@edgeless.systems> * deps: tidy all modules --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Markus Rudy <mr@edgeless.systems> Co-authored-by: edgelessci <edgelessci@users.noreply.github.com>
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:48ba2401ea66490ca1997b9d3e72b4bef7557ffbcdb1c95651fb3308f32fda58",
|
|
image = "ghcr.io/edgelesssys/constellation/libvirtd-base",
|
|
)
|