Skip to content
This repository has been archived by the owner on Sep 3, 2022. It is now read-only.

Upgrade TensorFlow to 1.0. #1200

Merged
merged 1 commit into from
Feb 21, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions containers/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ RUN echo "deb-src http://ftp.us.debian.org/debian testing main" >> /etc/apt/sour
cd /

# Install TensorFlow
RUN wget https://storage.googleapis.com/cloud-datalab/deploy/tf/tensorflow-0.12.0rc1-cp27-none-linux_x86_64.whl && \
pip install --upgrade-strategy only-if-needed --no-cache-dir tensorflow-0.12.0rc1-cp27-none-linux_x86_64.whl && \
rm tensorflow-0.12.0rc1-cp27-none-linux_x86_64.whl
# Setting protobuf to 3.1.0 to workaround a tensorflow 1.0 issue in tcmalloc
RUN pip install -U --upgrade-strategy only-if-needed --no-cache-dir tensorflow==1.0 && \
pip install -U --upgrade-strategy only-if-needed --no-cache-dir protobuf==3.1.0

# Install CloudML SDK
RUN gsutil cp gs://cloud-ml/sdk/cloudml.latest.tar.gz cloudml.latest.tar.gz && \
Expand Down