blob: 6d239c07e2850cdfdf08ecb2e4cceec6cdc94a77 [file] [log] [blame]
load("@k8s_deploy//:defaults.bzl", "k8s_deploy")
package(default_visibility = ["//:__subpackages__"])
exports_files(["favicon.ico"])
# ts_library uses the `//:tsconfig.json` target
# by default. This alias allows omitting explicit tsconfig
# attribute.
alias(
name = "tsconfig.json",
actual = "//src:tsconfig.json",
)
k8s_deploy(
name = "deploy",
images = {
"gcr.io/internal-200822/src:nodejs_image": "//src:image",
},
template = ":deployment.yaml",
)
# Just a dummy test so that we have a test target for //... on certain bazelci platforms with bazel_integration_test
sh_test(
name = "dummy_test",
srcs = ["dummy_test.sh"],
)