blob: c95bb5836f7ffc21f4febd82b38f094a8593ea09 [file] [log] [blame]
load("//bazel:skia_app_container.bzl", "skia_app_container")
skia_app_container(
name = "hashtag_container",
dirs = {
"/usr/local/bin": [
[
"//hashtag/go/hashtag:hashtag",
"0755",
],
],
"/usr/local/share/hashtag/dist": [
[
"//hashtag/config:config.json",
"0644",
],
] + [
[
"//hashtag/pages:production/index.%s" % ext,
"0644",
]
for ext in [
"css",
"html",
"js",
]
],
},
entrypoint = "/usr/local/bin/hashtag",
repository = "skia-public/hashtag",
)