blob: 71cd9f519d352f5bef52aee59600810efbcca65f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
load("@rules_pkg//:pkg.bzl", "pkg_tar")
package(
default_visibility = ["//benchmarks:__subpackages__"],
licenses = ["notice"],
)
pkg_tar(
name = "tar",
srcs = [
"Dockerfile",
"index.js",
"package.json",
],
)
|