-
Notifications
You must be signed in to change notification settings - Fork 68
/
Dockerfile
86 lines (69 loc) · 2.93 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
FROM ubuntu:16.04
MAINTAINER Mikkel Vilstrup <mikkel@vilstrup.dk>
ARG KERAS_VERSION=2.0.5
##############################################################################
# Install TensorFlow 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 \
git \
rsync \
software-properties-common \
unzip \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
##############################################################################
# Install Anaconda
##############################################################################
RUN apt-get update && \
apt-get install -y wget bzip2 ca-certificates && \
rm -rf /var/lib/apt/lists/*
RUN wget --quiet https://repo.continuum.io/archive/Anaconda3-4.4.0-Linux-x86_64.sh && \
/bin/bash Anaconda3-4.4.0-Linux-x86_64.sh -b -p /opt/conda && \
rm Anaconda3-4.4.0-Linux-x86_64.sh
ENV PATH /opt/conda/bin:$PATH
RUN pip install --upgrade pip
##############################################################################
# Install TensorFlow
##############################################################################
RUN conda install -c conda-forge tensorflow=1.1.0
##############################################################################
# Install Keras
##############################################################################
RUN pip --no-cache-dir install git+git://github.com/fchollet/keras.git@${KERAS_VERSION}
##############################################################################
# Install OpenAI Gym
##############################################################################
RUN pip --no-cache-dir install gym
RUN pip --no-cache-dir install git+https://github.com/jakevdp/JSAnimation.git
##############################################################################
# Setup Language to UTF-8 for text
##############################################################################
# https://askubuntu.com/a/601498
RUN apt-get clean && apt-get -y update && apt-get install -y locales && locale-gen en_US.UTF-8
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
##############################################################################
# Setup Jupyter
##############################################################################
COPY files/config.py /root/.jupyter/jupyter_notebook_config.py
# 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 files/run_jupyter.sh /
# TensorBoard
EXPOSE 6006
# IPython
EXPOSE 8888
# Tell docker where to go automatically
WORKDIR "/notebooks"
CMD ["/run_jupyter.sh", "--allow-root"]