blob: 364b682e9cb45318a2b071da43a8dd152c343dbc [file] [log] [blame]
giolekva8f77f232020-12-13 14:16:40 +04001# TODO(lekva): figure out how to build py_binary with pip dependencies and
2# migrate off of shell script running docker build
3sh_binary(
4 name = "container",
5 srcs = ["container.sh"],
6 data = glob(["*.py"]) + [
7 "Dockerfile",
8 "haarcascade_frontalface_default.xml",
9 ],
10 deps = [
11 "@bazel_tools//tools/bash/runfiles",
12 ],
13)