Tony Mack | bcbe611 | 2015-10-29 21:53:07 +0000 | [diff] [blame] | 1 | FROM ubuntu |
2 | |||||
3 | RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --force-yes \ | ||||
4 | curl \ | ||||
5 | gcc \ | ||||
6 | geoip-database \ | ||||
7 | git \ | ||||
8 | graphviz \ | ||||
9 | graphviz-dev \ | ||||
10 | libgeoip1 \ | ||||
11 | libxslt1.1 \ | ||||
12 | libxslt1-dev \ | ||||
13 | libyaml-dev \ | ||||
14 | pkg-config \ | ||||
15 | python-dev \ | ||||
16 | python-httplib2 \ | ||||
17 | python-pip \ | ||||
18 | python-psycopg2 \ | ||||
19 | python-pycurl \ | ||||
20 | tar \ | ||||
21 | wget | ||||
22 | |||||
23 | RUN pip install \ | ||||
24 | lxml \ | ||||
25 | netaddr \ | ||||
26 | pytz \ | ||||
27 | requests \ | ||||
28 | python-keyczar \ | ||||
29 | pygraphviz \ | ||||
30 | dnslib | ||||
31 | |||||
32 | RUN easy_install \ | ||||
33 | python_gflags \ | ||||
34 | google_api_python_client \ | ||||
35 | httplib2.ca_certs_locater | ||||
36 | |||||
37 | RUN easy_install --upgrade httplib2 | ||||
38 |