forked from yandexdataschool/Practical_RL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
61 lines (54 loc) · 2.31 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
FROM ubuntu:16.04
LABEL maintainer "Alexander Panin <justheuristic@gmail.com>, Dmitry Mittov <mittov@gmail.com>"
RUN echo "deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse" >> /etc/apt/sources.list && \
apt-get -qq update && \
apt-get install -y cmake \
zlib1g-dev \
libjpeg-dev \
xvfb \
libav-tools \
xorg-dev \
python-opengl \
swig3.0 \
python-dev \
python3-dev \
python-pip \
python3-pip \
libopenblas-dev \
liblapack-dev \
g++ && \
ln -s /usr/bin/swig3.0 /usr/bin/swig
RUN pip install --upgrade pip \
scipy \
numpy && \
pip install --upgrade sklearn \
jupyter \
tqdm \
gym[all] \
matplotlib \
seaborn && \
pip install --upgrade https://github.com/Theano/Theano/archive/master.zip \
https://github.com/Lasagne/Lasagne/archive/master.zip \
https://github.com/yandexdataschool/AgentNet/archive/master.zip \
tensorflow \
keras
RUN pip3 install --upgrade pip \
scipy \
numpy && \
pip3 install --upgrade sklearn \
jupyter \
tqdm \
gym[all] \
matplotlib \
seaborn && \
pip3 install --upgrade https://github.com/Theano/Theano/archive/master.zip \
https://github.com/Lasagne/Lasagne/archive/master.zip \
https://github.com/yandexdataschool/AgentNet/archive/master.zip \
tensorflow \
keras && \
python3 -m ipykernel.kernelspec
EXPOSE 8888
VOLUME /notebooks
WORKDIR /notebooks
COPY run_jupyter.sh /
CMD ["/run_jupyter.sh"]