mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-19 01:39:26 +01:00
8472f27ec5
GitOrigin-RevId: ddf02e70d2827c048db49b687ebbcdcc67807ca6
19 lines
413 B
Python
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",
|
|
registry = "index.docker.io",
|
|
repository = "library/ubuntu",
|
|
digest = "sha256:4e4bc990609ed865e07afc8427c30ffdddca5153fd4e82c20d8f0783a291e241",
|
|
tag = "20.04",
|
|
)
|