Created docker script

I created a docker script to install and run the project.
This commit is contained in:
Steven Bunkley
2017-11-21 13:24:43 -06:00
parent 8a6c7da0a9
commit ca1806aa1d
3 changed files with 48 additions and 0 deletions

19
docker/Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM continuumio/anaconda3
WORKDIR /usr/src/project
COPY . /usr/src/project
RUN apt-get update && apt-get upgrade -y \
&& apt-get install -y \
libpq-dev \
build-essential \
git \
&& rm -rf /var/lib/apt/lists/* \
&& conda install -y -c conda-forge tensorflow=1.0.0 \
&& conda install -y -c conda-forge jupyter_contrib_nbextensions \
&& jupyter contrib nbextension install --user \
&& jupyter nbextension enable toc2/main