blob: 3614a67d18d69968f21a107c09bcd8b4ff500cfe (
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 = "gvisor-containerd-shim",
srcs = ["main.go"],
static = True,
visibility = [
"//visibility:public",
],
deps = ["//shim/v1/cli"],
)
|