hyperboria/images/install.bzl
the-superpirate a51463c027 - repo(nexus): Refactoring legacy
- feat(nexus): Remove legacy functions
3 internal commit(s)

GitOrigin-RevId: d4c640bdf886fb17b0996433911ca33cd76a2091
2021-04-11 17:44:12 +03:00

25 lines
579 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:5403064f94b617f7975a19ba4d1a1299fd584397f6ee4393d0e16744ed11aab1",
registry = "index.docker.io",
repository = "library/ubuntu",
tag = "20.04",
)
container_pull(
name = "jupyter",
registry = "index.docker.io",
repository = "jupyter/tensorflow-notebook",
tag = "latest",
)