forked from bazelbuild/rules_docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
image.bzl
101 lines (88 loc) · 3.34 KB
/
image.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Copyright 2017 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A rule for creating a Python container image.
The signature of this rule is compatible with py_binary.
"""
load(
"//lang:image.bzl",
"app_layer",
"filter_layer",
)
load(
"//container:container.bzl",
"container_pull",
_repositories = "repositories",
)
# Load the resolved digests.
load(":python.bzl", "DIGESTS")
def repositories():
# Call the core "repositories" function to reduce boilerplate.
# This is idempotent if folks call it themselves.
_repositories()
excludes = native.existing_rules().keys()
if "py_image_base" not in excludes:
container_pull(
name = "py_image_base",
registry = "gcr.io",
repository = "distroless/python2.7",
digest = DIGESTS["latest"],
)
if "py_debug_image_base" not in excludes:
container_pull(
name = "py_debug_image_base",
registry = "gcr.io",
repository = "distroless/python2.7",
digest = DIGESTS["debug"],
)
DEFAULT_BASE = select({
"@io_bazel_rules_docker//:fastbuild": "@py_image_base//image",
"@io_bazel_rules_docker//:debug": "@py_debug_image_base//image",
"@io_bazel_rules_docker//:optimized": "@py_image_base//image",
"//conditions:default": "@py_image_base//image",
})
def py_layer(name, deps, filter = "", **kwargs):
binary_name = name + ".layer-binary"
native.py_library(name = binary_name, deps = deps, **kwargs)
filter_layer(name = name, dep = binary_name, filter = filter)
def py_image(name, base = None, deps = [], layers = [], **kwargs):
"""Constructs a container image wrapping a py_binary target.
Args:
layers: Augments "deps" with dependencies that should be put into
their own layers.
**kwargs: See py_binary.
"""
binary_name = name + ".binary"
if "main" not in kwargs:
kwargs["main"] = name + ".py"
# TODO(mattmoor): Consider using par_binary instead, so that
# a single target can be used for all three.
native.py_binary(name = binary_name, deps = deps + layers, **kwargs)
# TODO(mattmoor): Consider making the directory into which the app
# is placed configurable.
base = base or DEFAULT_BASE
for index, dep in enumerate(layers):
base = app_layer(name = "%s.%d" % (name, index), base = base, dep = dep)
base = app_layer(name = "%s.%d-symlinks" % (name, index), base = base, dep = dep, binary = binary_name)
visibility = kwargs.get("visibility", None)
tags = kwargs.get("tags", None)
app_layer(
name = name,
base = base,
entrypoint = ["/usr/bin/python"],
binary = binary_name,
visibility = visibility,
tags = tags,
args = kwargs.get("args"),
data = kwargs.get("data"),
)