From a3203891df001679b054763a8b7a1e9db5e1382a Mon Sep 17 00:00:00 2001 From: Toby Boyd Date: Fri, 29 May 2020 09:21:37 -0700 Subject: [PATCH] Fixes after a trial run. PiperOrigin-RevId: 313793473 Change-Id: I46d8c16e0201d154c76eabb87b7ad8ddab88044d --- reverb/pip_package/README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/reverb/pip_package/README.md b/reverb/pip_package/README.md index 3dcd3cec..55c29dd6 100644 --- a/reverb/pip_package/README.md +++ b/reverb/pip_package/README.md @@ -33,13 +33,15 @@ $ docker build --tag tensorflow:reverb_release \ # oss_build.sh will build a .whl for Python 3.6 by default $ docker run --rm -it --mount "type=bind,src=$REVERB_DIR,dst=/tmp/reverb" \ - tensorflow:reverb_release bash oss_build.sh + tensorflow:reverb_release bash oss_build.sh --clean true -# Alternatively configure and build for Python 3.6, 3.7, and 3.8. -$ docker build --tag tensorflow:reverb \ - --build-arg python_version="python3.6 python3.7 python3.8" \ - - < "$REVERB_DIR/docker/dev.dockerfile" +# Alternatively configure and build for Python 3.6 and 3.7. +# Python 3.8 is supported in the docker build file but cannot be used until +# dm-tree supports 3.8. +$ docker build --tag tensorflow:reverb_release \ + --build-arg python_version="python3.6 python3.7" \ + - < "$REVERB_DIR/docker/release.dockerfile" # Build a .whl for Python 3.7 $ docker run --rm -it --mount "type=bind,src=$REVERB_DIR,dst=/tmp/reverb" \