Skip to content

Instantly share code, notes, and snippets.

@mokemokechicken
Created February 23, 2016 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mokemokechicken/52cac52a1877deaacf4f to your computer and use it in GitHub Desktop.
Save mokemokechicken/52cac52a1877deaacf4f to your computer and use it in GitHub Desktop.
Dockerfile about Jupyter with tensorflow
From jupyter/datascience-notebook
RUN curl -k -L -O https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp34-none-linux_x86_64.whl && \
mv tensorflow-0.7.1-cp34-none-linux_x86_64.whl tensorflow-0.7.1-cp35-none-linux_x86_64.whl
RUN pip install tensorflow-0.7.1-cp35-none-linux_x86_64.whl
RUN /bin/bash -c "source activate /opt/conda/envs/python2/ && pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment