aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/ci_build/Dockerfile.debian.jessie.cpu
diff options
context:
space:
mode:
authorGravatar Eugene Brevdo <ebrevdo@gmail.com>2016-03-10 17:18:30 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-03-11 11:41:23 -0800
commit56f1d64998744ad655fe5c428658a13be35b865e (patch)
tree1c4e5ec1192835898b9e17f462cf62838534add2 /tensorflow/tools/ci_build/Dockerfile.debian.jessie.cpu
parent64dd5b58d52d37697d5beb68e2177b966108e0a7 (diff)
Fix dependencies bugs
Change: 116925769
Diffstat (limited to 'tensorflow/tools/ci_build/Dockerfile.debian.jessie.cpu')
-rw-r--r--tensorflow/tools/ci_build/Dockerfile.debian.jessie.cpu14
1 files changed, 14 insertions, 0 deletions
diff --git a/tensorflow/tools/ci_build/Dockerfile.debian.jessie.cpu b/tensorflow/tools/ci_build/Dockerfile.debian.jessie.cpu
new file mode 100644
index 0000000000..fc37a5bb28
--- /dev/null
+++ b/tensorflow/tools/ci_build/Dockerfile.debian.jessie.cpu
@@ -0,0 +1,14 @@
+FROM debian:jessie
+
+MAINTAINER Jan Prach <jendap@google.com>
+
+# Copy and run the install scripts.
+COPY install/*.sh /install/
+RUN /install/install_bootstrap_deb_packages.sh
+RUN echo "deb http://http.debian.net/debian jessie-backports main" | tee -a /etc/apt/sources.list
+RUN /install/install_deb_packages.sh
+RUN /install/install_bazel.sh
+
+# Set up bazelrc.
+COPY install/.bazelrc /root/.bazelrc
+ENV BAZELRC /root/.bazelrc