blob: b4a107d27541dc6eeacea909fee5ee14cfc4d342 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
load("//tools:defs.bzl", "go_binary")
package(licenses = ["notice"])
go_binary(
name = "containerd-shim-runsc-v1",
srcs = ["main.go"],
static = True,
visibility = [
"//visibility:public",
],
deps = ["//shim/v2/cli"],
)
|