blob: 27f7c0c46045596364f64a9cd932dbe9debf1605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
load("@rules_pkg//:pkg.bzl", "pkg_tar")
package(
default_visibility = ["//benchmarks:__subpackages__"],
licenses = ["notice"],
)
pkg_tar(
name = "tar",
srcs = [
"Dockerfile",
"Gemfile",
"Gemfile.lock",
"config.ru",
"index.erb",
"main.rb",
],
strip_prefix = "third_party/gvisor/benchmarks/workloads/ruby_template",
)
|