summaryrefslogtreecommitdiffhomepage
path: root/tools/installers/BUILD
blob: 13d3cc5e07a9cc60f5b8cbe6d2db45353c504477 (plain)
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
# Installers for use by the tools/vm_test rules.

package(
    default_visibility = ["//:sandbox"],
    licenses = ["notice"],
)

sh_binary(
    name = "head",
    srcs = ["head.sh"],
    data = [
        "//runsc",
    ],
)

sh_binary(
    name = "images",
    srcs = ["images.sh"],
    data = [
        "//images",
    ],
)

sh_binary(
    name = "master",
    srcs = ["master.sh"],
)

sh_binary(
    name = "containerd",
    srcs = ["containerd.sh"],
)

sh_binary(
    name = "shim",
    srcs = ["shim.sh"],
    data = [
        "//shim/v1:gvisor-containerd-shim",
        "//shim/v2:containerd-shim-runsc-v1",
    ],
)