Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update docker for 0.7.0 #1114

Merged
merged 1 commit into from Feb 16, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions tensorflow/tools/docker/Dockerfile
Expand Up @@ -28,9 +28,9 @@ RUN pip --no-cache-dir install \
python -m ipykernel.kernelspec

# Install TensorFlow CPU version.
ENV TENSORFLOW_VERSION 0.6.0
ENV TENSORFLOW_VERSION 0.7.0
RUN pip --no-cache-dir install \
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-${TENSORFLOW_VERSION}-cp27-none-linux_x86_64.whl
http://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-${TENSORFLOW_VERSION}-py2-none-linux_x86_64.whl

# Set up our notebook config.
COPY jupyter_notebook_config.py /root/.jupyter/
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/tools/docker/Dockerfile.devel
Expand Up @@ -79,7 +79,7 @@ RUN mkdir /bazel && \

RUN git clone --recursive https://github.com/tensorflow/tensorflow.git && \
cd tensorflow && \
git checkout 0.6.0
git checkout r0.7
WORKDIR /tensorflow

# TODO(craigcitro): Don't install the pip package, since it makes it
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/tools/docker/Dockerfile.devel-gpu
Expand Up @@ -79,7 +79,7 @@ RUN mkdir /bazel && \

RUN git clone --recursive https://github.com/tensorflow/tensorflow.git && \
cd tensorflow && \
git checkout 0.6.0
git checkout r0.7
WORKDIR /tensorflow

# Configure the build for our CUDA configuration.
Expand Down
4 changes: 2 additions & 2 deletions tensorflow/tools/docker/Dockerfile.gpu
Expand Up @@ -28,9 +28,9 @@ RUN pip --no-cache-dir install \
python -m ipykernel.kernelspec

# Install TensorFlow GPU version.
ENV TENSORFLOW_VERSION 0.6.0
ENV TENSORFLOW_VERSION 0.7.0
RUN pip --no-cache-dir install \
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-${TENSORFLOW_VERSION}-cp27-none-linux_x86_64.whl
http://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-${TENSORFLOW_VERSION}-py2-none-linux_x86_64.whl

# Set up our notebook config.
COPY jupyter_notebook_config.py /root/.jupyter/
Expand Down