aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/docker/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/tools/docker/BUILD')
-rw-r--r--tensorflow/tools/docker/BUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/tensorflow/tools/docker/BUILD b/tensorflow/tools/docker/BUILD
new file mode 100644
index 0000000000..2cc540ed3b
--- /dev/null
+++ b/tensorflow/tools/docker/BUILD
@@ -0,0 +1,26 @@
+# Description:
+# Various tools and rules related to the TensorFlow docker container.
+
+package(default_visibility = ["//visibility:private"])
+
+licenses(["notice"]) # Apache 2.0
+
+exports_files(["LICENSE"])
+
+py_binary(
+ name = "simple_console",
+ srcs = ["simple_console.py"],
+ deps = ["//tensorflow:tensorflow_py"],
+)
+
+filegroup(
+ name = "all_files",
+ srcs = glob(
+ ["**/*"],
+ exclude = [
+ "**/METADATA",
+ "**/OWNERS",
+ ],
+ ),
+ visibility = ["//tensorflow:__subpackages__"],
+)