summaryrefslogtreecommitdiffhomepage
path: root/shim/v1/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'shim/v1/BUILD')
-rw-r--r--shim/v1/BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/shim/v1/BUILD b/shim/v1/BUILD
new file mode 100644
index 000000000..3614a67d1
--- /dev/null
+++ b/shim/v1/BUILD
@@ -0,0 +1,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"],
+)