Created
July 17, 2017 13:02
-
-
Save sebgoa/2f2874c52ac5b0594742d2a2c9b1bf0d to your computer and use it in GitHub Desktop.
snippet of WORKSPACE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git_repository( | |
| name = "io_bazel_rules_docker", | |
| remote = "https://github.com/bazelbuild/rules_docker.git", | |
| tag = "v0.0.1", | |
| ) | |
| load( | |
| "@io_bazel_rules_docker//docker:docker.bzl", | |
| "docker_repositories", | |
| "docker_build", | |
| "docker_pull", | |
| ) | |
| docker_repositories() | |
| docker_pull( | |
| name = "bitnami_minideb", | |
| registry ="index.docker.io", | |
| repository = "bitnami/minideb-extras", | |
| tag = "jessie", | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment