hyperboria/images/install.bzl
the-superpirate 681817ceae No description
GitOrigin-RevId: 83514338be1d662518bab9fe5ab6eefef98f229f
2021-04-09 13:29:10 +03:00

19 lines
413 B
Python

"""
Install various images
"""
load("@io_bazel_rules_docker//container:pull.bzl", "container_pull")
def images_install():
"""
Docker predefined images
"""
container_pull(
name = "ubuntu",
digest = "sha256:45ff0162921e61c004010a67db1bee7d039a677bed0cb294e61f2b47346d42b3",
registry = "index.docker.io",
repository = "library/ubuntu",
tag = "20.10",
)