blob: e0d0c6d2182039102a97f195d7b70a1c8c618f01 [file] [log] [blame]
Pingping Linb7a7d2b2016-08-19 18:11:36 +00001FROM ubuntu:14.04.3
2
3# XXX Workaround for docker bug:
4# https://github.com/docker/docker/issues/6345
5# Kernel 3.15 breaks docker, uss the line below as a workaround
6# until there is a fix
7RUN ln -s -f /bin/true /usr/bin/chfn
8# XXX End workaround
9
10# Install.
11RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \
12 curl \
13 gcc \
14 geoip-database \
15 git \
16 graphviz \
17 graphviz-dev \
18 libgeoip1 \
19 libxslt1.1 \
20 libxslt1-dev \
21 libyaml-dev \
22 m4 \
23 pkg-config \
24 python-dev \
25 python-httplib2 \
26 python-pip \
27 python-psycopg2 \
28 python-pycurl \
29 python-setuptools \
30 tar \
31 wget \
32##### observer dependencies
33 python-keystoneclient \
34 python-novaclient \
35 python-neutronclient \
36 python-glanceclient \
37 python-ceilometerclient
38
39RUN pip install \
40 django==1.7 \
41 django-bitfield \
42 django-crispy-forms \
43 django-encrypted-fields \
44 django-extensions \
45 django-filter==0.11.0 \
46 django-geoposition \
47 django-ipware \
48 django_rest_swagger \
49 django-suit==0.3a1 \
50 django-timezones \
51 djangorestframework==2.4.4 \
52 dnslib \
53 lxml \
54 markdown \
55 netaddr \
56 pyOpenSSL \
57 psycopg2 \
58 python-ceilometerclient \
59 python-dateutil \
60 python-keyczar \
61 pygraphviz \
62 pytz \
63 pyyaml \
64 requests
65
66RUN easy_install --upgrade httplib2
67
68RUN easy_install \
69 python_gflags \
70 google_api_python_client \
71 httplib2.ca_certs_locater
72
73ADD http://code.jquery.com/jquery-1.9.1.min.js /usr/local/lib/python2.7/dist-packages/suit/static/suit/js/
74
75# Install XOS
76ADD xos /opt/xos
77RUN chmod +x /opt/xos/tools/xos-manage
78RUN /opt/xos/tools/xos-manage genkeys
79
80# install Tosca engine
81RUN chmod +x /opt/xos/tosca/run.py
82RUN bash /opt/xos/tosca/install_tosca.sh
83
84EXPOSE 8000
85
86# Set environment variables.
87ENV HOME /root
88
89# Define working directory.
90WORKDIR /opt/xos
91
92# RUN python /opt/xos/manage.py makemigrations mcordservice
93# Define default command.
94CMD update-ca-certificates && python /opt/xos/manage.py runserver 0.0.0.0:8000 --insecure --makemigrations