aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/docker
diff options
context:
space:
mode:
authorGravatar Amit Patankar <amitpatankar@google.com>2018-08-01 13:00:51 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-01 13:04:30 -0700
commitc709503f31fa9be07c5ee62ed1eb7fb29c2aaa73 (patch)
treea5f028b393410f77591a945b804a0179866a954e /tensorflow/tools/docker
parent9fb82adad07d2f7dc2a72d9a85ef5c2a55abfe0e (diff)
Fix the docker reference to ci.tensorflow.org to now use tf-nightly pip
packages instead. PiperOrigin-RevId: 206978028
Diffstat (limited to 'tensorflow/tools/docker')
-rw-r--r--tensorflow/tools/docker/README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/tensorflow/tools/docker/README.md b/tensorflow/tools/docker/README.md
index 525f2995ce..a286e8a212 100644
--- a/tensorflow/tools/docker/README.md
+++ b/tensorflow/tools/docker/README.md
@@ -87,8 +87,10 @@ export TF_DOCKER_BUILD_IS_DEVEL=NO
export TF_DOCKER_BUILD_TYPE=CPU
export TF_DOCKER_BUILD_PYTHON_VERSION=PYTHON2
-export NIGHTLY_VERSION="1.head"
-export TF_DOCKER_BUILD_CENTRAL_PIP=$(echo ${TF_DOCKER_BUILD_PYTHON_VERSION} | sed s^PYTHON2^http://ci.tensorflow.org/view/Nightly/job/nightly-matrix-cpu/TF_BUILD_IS_OPT=OPT,TF_BUILD_IS_PIP=PIP,TF_BUILD_PYTHON_VERSION=${TF_DOCKER_BUILD_PYTHON_VERSION},label=cpu-slave/lastSuccessfulBuild/artifact/pip_test/whl/tensorflow-${NIGHTLY_VERSION}-cp27-cp27mu-manylinux1_x86_64.whl^ | sed s^PYTHON3^http://ci.tensorflow.org/view/Nightly/job/nightly-python35-linux-cpu/lastSuccessfulBuild/artifact/pip_test/whl/tensorflow-${NIGHTLY_VERSION}-cp35-cp35m-manylinux1_x86_64.whl^)
+pip download --no-deps tf-nightly
+
+export TF_DOCKER_BUILD_CENTRAL_PIP=$(ls tf_nightly*.whl)
+export TF_DOCKER_BUILD_CENTRAL_PIP_IS_LOCAL=1
tensorflow/tools/docker/parameterized_docker_build.sh
```