Created
January 7, 2019 00:04
-
-
Save gabrielgarza/3851b50cd945637f92b5eaf517104c29 to your computer and use it in GitHub Desktop.
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 nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04 | |
MAINTAINER Gabriel Garza <[email protected]> | |
# Essentials: developer tools, build tools, OpenBLAS | |
RUN apt-get update && apt-get install -y --no-install-recommends \ | |
apt-utils git curl vim unzip openssh-client wget \ | |
build-essential cmake \ | |
libopenblas-dev | |
# | |
# Python 3.5 | |
# | |
# For convenience, alias (but don't sym-link) python & pip to python3 & pip3 as recommended in: | |
# http://askubuntu.com/questions/351318/changing-symlink-python-to-python3-causes-problems | |
RUN apt-get install -y --no-install-recommends python3.5 python3.5-dev python3-pip python3-tk && \ | |
pip3 install pip==9.0.3 --upgrade && \ | |
pip3 install --no-cache-dir --upgrade setuptools && \ | |
echo "alias python='python3'" >> /root/.bash_aliases && \ | |
echo "alias pip='pip3'" >> /root/.bash_aliases | |
# Pillow and it's dependencies | |
RUN apt-get install -y --no-install-recommends libjpeg-dev zlib1g-dev && \ | |
pip3 --no-cache-dir install Pillow | |
# Science libraries and other common packages | |
RUN pip3 --no-cache-dir install \ | |
numpy scipy sklearn scikit-image==0.13.1 pandas matplotlib Cython requests pandas imgaug | |
# Install AWS CLI | |
RUN pip3 --no-cache-dir install awscli --upgrade | |
# | |
# Jupyter Notebook | |
# | |
# Allow access from outside the container, and skip trying to open a browser. | |
# NOTE: disable authentication token for convenience. DON'T DO THIS ON A PUBLIC SERVER. | |
RUN pip3 --no-cache-dir install jupyter && \ | |
mkdir /root/.jupyter && \ | |
echo "c.NotebookApp.ip = '*'" \ | |
"\nc.NotebookApp.open_browser = False" \ | |
"\nc.NotebookApp.token = ''" \ | |
> /root/.jupyter/jupyter_notebook_config.py | |
EXPOSE 8888 | |
# | |
# Tensorflow 1.6.0 - GPU | |
# | |
# Install TensorFlow | |
RUN pip3 --no-cache-dir install tensorflow-gpu | |
# Expose port for TensorBoard | |
EXPOSE 6006 | |
# | |
# OpenCV 3.4.1 | |
# | |
# Dependencies | |
RUN apt-get install -y --no-install-recommends \ | |
libjpeg8-dev libtiff5-dev libjasper-dev libpng12-dev \ | |
libavcodec-dev libavformat-dev libswscale-dev libv4l-dev libgtk2.0-dev \ | |
liblapacke-dev checkinstall | |
RUN pip3 install opencv-python | |
# | |
# Keras 2.1.5 | |
# | |
RUN pip3 install --no-cache-dir --upgrade h5py pydot_ng keras | |
# | |
# PyCocoTools | |
# | |
# Using a fork of the original that has a fix for Python 3. | |
# I submitted a PR to the original repo (https://github.com/cocodataset/cocoapi/pull/50) | |
# but it doesn't seem to be active anymore. | |
RUN pip3 install --no-cache-dir git+https://github.com/waleedka/coco.git#subdirectory=PythonAPI | |
COPY setup_project_and_data.sh /home | |
COPY train.sh /home | |
COPY predict.sh /home | |
WORKDIR "/home" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment