forked from GoogleContainerTools/distroless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
23 lines (19 loc) · 836 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
# 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//java:image.bzl", "java_image")
load("//base:distro.bzl", "DISTRO_SUFFIXES")
[java_image(
name = "hello" + distro_suffix,
srcs = ["HelloJava.java"],
base = "//java:java11" + distro_suffix,
main_class = "examples.HelloJava",
) for distro_suffix in DISTRO_SUFFIXES]
load("@io_bazel_rules_docker//contrib:test.bzl", "container_test")
[container_test(
name = "hello" + distro_suffix + "_test",
size = "small",
configs = ["testdata/hello" + distro_suffix + ".yaml"],
image = ":hello" + distro_suffix,
) for distro_suffix in DISTRO_SUFFIXES]