mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-23 11:36:51 +01:00
9ce67ec590
- feat(idm): Rename IDM-2 to IDM - feat(idm): Open IDM 3 internal commit(s) GitOrigin-RevId: e302e9b5cda18cca1adc4ae8a3d906714d222106
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:45ff0162921e61c004010a67db1bee7d039a677bed0cb294e61f2b47346d42b3",
|
|
registry = "index.docker.io",
|
|
repository = "library/ubuntu",
|
|
tag = "20.10",
|
|
)
|