-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
51 lines (48 loc) · 897 Bytes
/
Dockerfile
File metadata and controls
51 lines (48 loc) · 897 Bytes
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
FROM orchardup/python
MAINTAINER Marc Abramowitz <[email protected]> (@msabramo)
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq \
freetds-bin \
freetds-common \
freetds-dev \
gfortran \
git \
libatlas-dev \
libatlas-base-dev \
libblas-dev \
libcurl4-openssl-dev \
liblapack-dev \
libmemcached-dev \
libsasl2-dev \
libxml2-dev \
libxmlsec1 \
libxslt1-dev \
silversearcher-ag \
tree \
vim \
zlib1g-dev
RUN pip install \
ansible \
ansible-shell \
bpython \
Cython \
gevent \
gunicorn==18.0 \
ipython \
lxml \
msgpack-python \
numpy \
pandas \
pdbpp \
Pillow \
pylibmc \
pycrypto \
pymssql \
pyramid \
pyzmq \
scikit-learn \
scipy \
simplejson \
SQLAlchemy \
tornado \
ujson
CMD ["ipython"]