mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
30 lines
552 B
Python
30 lines
552 B
Python
load("//tools:defs.bzl", "go_binary", "pkg_tar")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "containerd-shim-runsc-v1",
|
|
srcs = ["main.go"],
|
|
features = ["fully_static_link"],
|
|
tags = ["staging"],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
deps = ["//shim/v1/cli"],
|
|
)
|
|
|
|
pkg_tar(
|
|
name = "config",
|
|
srcs = [
|
|
"runsc.toml",
|
|
],
|
|
mode = "0644",
|
|
package_dir = "/etc/containerd",
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|