mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-30 06:52:55 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
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",
|
|
digest = "sha256:d0b4808a158b42b6efb3ae93abb567b1cb6ee097221813c0315390de0fa320b9",
|
|
registry = "index.docker.io",
|
|
repository = "library/ubuntu",
|
|
tag = "21.10",
|
|
)
|