face_dataction: run docker build via bazel sh_binary
diff --git a/apps/face_detection/BUILD b/apps/face_detection/BUILD
new file mode 100644
index 0000000..364b682
--- /dev/null
+++ b/apps/face_detection/BUILD
@@ -0,0 +1,13 @@
+# TODO(lekva): figure out how to build py_binary with pip dependencies and
+# migrate off of shell script running docker build
+sh_binary(
+ name = "container",
+ srcs = ["container.sh"],
+ data = glob(["*.py"]) + [
+ "Dockerfile",
+ "haarcascade_frontalface_default.xml",
+ ],
+ deps = [
+ "@bazel_tools//tools/bash/runfiles",
+ ],
+)