forked from GoogleContainerTools/distroless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
26 lines (22 loc) · 999 Bytes
/
BUILD
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
# Public notice: this file is for internal documentation, testing, and
# reference only. Note that repo maintainers can freely change any part of the
# repository code at any time.
package(default_visibility = ["//visibility:public"])
load("@io_bazel_rules_docker//container:container.bzl", "container_image")
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
[container_image(
name = "hello" + suffix,
base = "//experimental/dotnet:dotnet" + suffix,
cmd = [
"dotnet",
"/bin/Release/netcoreapp2.0/hello.dll",
],
files = [":bin"],
) for suffix in ("", "_core_aspnet_debian10", "_core_runtime_debian10", "_core_sdk_debian10")]
load("@io_bazel_rules_docker//contrib:test.bzl", "container_test")
[container_test(
name = "hello" + suffix + "_test",
size = "small",
configs = ["testdata/hello" + suffix + ".yaml"],
image = ":hello" + suffix,
) for suffix in ("", "_core_aspnet_debian10", "_core_runtime_debian10", "_core_sdk_debian10")]