forked from bazelbuild/rules_docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
image.bzl
68 lines (60 loc) · 2.04 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
# 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 D container image.
The signature of this rule is compatible with d_binary.
"""
load(
"//lang:image.bzl",
"app_layer",
"dep_layer",
)
load(
"//cc:image.bzl",
"DEFAULT_BASE",
_repositories = "repositories",
)
load("@io_bazel_rules_d//d:d.bzl", "d_binary")
def repositories():
_repositories()
def d_image(name, base = None, deps = [], layers = [], binary = None, **kwargs):
"""Constructs a container image wrapping a d_binary target.
Args:
binary: An alternative binary target to use instead of generating one.
layers: Augments "deps" with dependencies that should be put into
their own layers.
**kwargs: See d_binary.
"""
if layers:
print("d_image does not benefit from layers=[], got: %s" % layers)
if not binary:
binary = name + "_binary"
d_binary(name = binary, deps = deps + layers, **kwargs)
elif deps:
fail("kwarg does nothing when binary is specified", "deps")
base = base or DEFAULT_BASE
for index, dep in enumerate(layers):
this_name = "%s_%d" % (name, index)
dep_layer(name = this_name, base = base, dep = dep)
base = this_name
visibility = kwargs.get("visibility", None)
tags = kwargs.get("tags", None)
app_layer(
name = name,
base = base,
binary = binary,
lang_layers = layers,
visibility = visibility,
tags = tags,
args = kwargs.get("args"),
)