Created
October 27, 2018 20:34
-
-
Save aleksas/b2a9db33c7d15463bd3ba90810637264 to your computer and use it in GitHub Desktop.
Tensorflow 1.4 CPU Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
MAINTAINER Craig Citro <[email protected]> | |
# Pick up some TF dependencies | |
RUN apt-get update && apt-get install -y --no-install-recommends \ | |
build-essential \ | |
curl \ | |
libfreetype6-dev \ | |
libpng12-dev \ | |
libzmq3-dev \ | |
pkg-config \ | |
python \ | |
python-dev \ | |
rsync \ | |
software-properties-common \ | |
unzip \ | |
&& \ | |
apt-get clean && \ | |
rm -rf /var/lib/apt/lists/* | |
RUN curl -O https://bootstrap.pypa.io/get-pip.py && \ | |
python get-pip.py && \ | |
rm get-pip.py | |
RUN pip --no-cache-dir install \ | |
Pillow \ | |
h5py \ | |
ipykernel \ | |
jupyter \ | |
matplotlib \ | |
numpy \ | |
pandas \ | |
scipy \ | |
sklearn \ | |
&& \ | |
python -m ipykernel.kernelspec | |
# --- DO NOT EDIT OR DELETE BETWEEN THE LINES --- # | |
# These lines will be edited automatically by parameterized_docker_build.sh. # | |
# COPY _PIP_FILE_ / | |
# RUN pip --no-cache-dir install /_PIP_FILE_ | |
# RUN rm -f /_PIP_FILE_ | |
# Install TensorFlow CPU version from central repo | |
RUN pip --no-cache-dir install \ | |
http://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.0.0-cp27-none-linux_x86_64.whl | |
# --- ~ DO NOT EDIT OR DELETE BETWEEN THE LINES --- # | |
# RUN ln -s /usr/bin/python3 /usr/bin/python# | |
# Set up our notebook config. | |
COPY jupyter_notebook_config.py /root/.jupyter/ | |
# Copy sample notebooks. | |
COPY notebooks /notebooks | |
# Jupyter has issues with being run directly: | |
# https://github.com/ipython/ipython/issues/7062 | |
# We just add a little wrapper script. | |
COPY run_jupyter.sh / | |
# TensorBoard | |
EXPOSE 6006 | |
# IPython | |
EXPOSE 8888 | |
WORKDIR "/notebooks" | |
CMD ["/run_jupyter.sh", "--allow-root"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment