constellation/bazel/toolchains/container_images.bzl
2023-04-18 15:35:15 +02:00

17 lines
429 B
Python

"""
This file contains external container images used by the project.
"""
load("@rules_oci//oci:pull.bzl", "oci_pull")
def containter_image_deps():
oci_pull(
name = "distroless_static",
digest = "sha256:c3c3d0230d487c0ad3a0d87ad03ee02ea2ff0b3dcce91ca06a1019e07de05f12",
image = "gcr.io/distroless/static",
platforms = [
"linux/amd64",
"linux/arm64",
],
)