S.Çağlar Onur | 89d0ce7 | 2015-02-23 11:11:12 -0500 | [diff] [blame] | 1 | FROM ubuntu:14.04.2 |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 2 | MAINTAINER Andy Bavier <acb@cs.princeton.edu> |
| 3 | |
Tony Mack | 4faa5f9 | 2015-02-10 16:47:12 -0500 | [diff] [blame] | 4 | # XXX Workaround for docker bug: |
| 5 | # https://github.com/docker/docker/issues/6345 |
| 6 | # Kernel 3.15 breaks docker, uss the line below as a workaround |
| 7 | # until there is a fix |
| 8 | RUN ln -s -f /bin/true /usr/bin/chfn |
| 9 | # XXX End workaround |
| 10 | |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 11 | # Install. |
| 12 | RUN apt-get update |
Andy Bavier | 4578ae7 | 2015-02-10 16:37:33 -0500 | [diff] [blame] | 13 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y git |
| 14 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y postgresql |
| 15 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-psycopg2 |
| 16 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y graphviz graphviz-dev |
| 17 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y libxslt1.1 libxslt1-dev |
| 18 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-pip |
| 19 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tar |
| 20 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gcc |
| 21 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-httplib2 |
| 22 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y geoip-database libgeoip1 |
| 23 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y wget |
| 24 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-dev |
| 25 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y libyaml-dev |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 26 | |
| 27 | RUN pip install django==1.7 |
| 28 | RUN pip install djangorestframework==2.4.4 |
| 29 | RUN pip install markdown # Markdown support for the browseable API. |
| 30 | RUN pip install pyyaml # YAML content-type support. |
| 31 | RUN pip install django-filter # Filtering support |
| 32 | RUN pip install lxml # XML manipulation library |
| 33 | RUN pip install netaddr # IP Addr library |
| 34 | RUN pip install pytz |
| 35 | RUN pip install django-timezones |
| 36 | RUN pip install requests |
| 37 | RUN pip install django-crispy-forms |
| 38 | RUN pip install django-geoposition |
| 39 | RUN pip install django-extensions |
| 40 | RUN pip install django-suit |
| 41 | RUN pip install django-evolution |
| 42 | RUN pip install django-bitfield |
| 43 | RUN pip install django-ipware |
| 44 | RUN pip install django-encrypted-fields |
| 45 | RUN pip install python-keyczar |
| 46 | |
Andy Bavier | 4578ae7 | 2015-02-10 16:37:33 -0500 | [diff] [blame] | 47 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-keystoneclient |
| 48 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-novaclient |
| 49 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-neutronclient |
| 50 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-glanceclient |
| 51 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-ceilometerclient |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 52 | |
| 53 | RUN pip install django_rest_swagger |
| 54 | |
Andy Bavier | 4578ae7 | 2015-02-10 16:37:33 -0500 | [diff] [blame] | 55 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-setuptools |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 56 | RUN easy_install django_evolution |
| 57 | RUN easy_install python_gflags |
| 58 | RUN easy_install google_api_python_client |
| 59 | |
Andy Bavier | cabca60 | 2015-02-11 17:07:36 -0500 | [diff] [blame] | 60 | # Install custom Ansible |
| 61 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-crypto |
| 62 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-yaml |
| 63 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y openssh-client |
| 64 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-paramiko |
| 65 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-jinja2 |
| 66 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-httplib2 |
| 67 | RUN git clone -b release1.8.2 git://github.com/ansible/ansible.git /opt/ansible |
| 68 | RUN git clone -b release1.8.2 git://github.com/ansible/ansible-modules-extras.git /opt/ansible/lib/ansible/modules/extras |
| 69 | RUN git clone -b release1.8.2 git://github.com/ansible/ansible-modules-extras.git /opt/ansible/v2/ansible/modules/extras |
| 70 | RUN git clone git://github.com/sb98052/ansible-modules-core.git /opt/ansible/lib/ansible/modules/core |
| 71 | RUN git clone git://github.com/sb98052/ansible-modules-core.git /opt/ansible/v2/ansible/modules/core |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 72 | ADD ansible-hosts /etc/ansible/hosts |
| 73 | |
| 74 | ADD http://code.jquery.com/jquery-1.9.1.min.js /usr/local/lib/python2.7/dist-packages/suit/static/suit/js/ |
| 75 | |
Andy Bavier | ea97965 | 2015-02-10 14:01:07 -0500 | [diff] [blame] | 76 | # For Observer |
| 77 | RUN git clone git://git.planet-lab.org/fofum.git /tmp/fofum |
| 78 | RUN cd /tmp/fofum; python setup.py install |
S.Çağlar Onur | 89d0ce7 | 2015-02-23 11:11:12 -0500 | [diff] [blame] | 79 | RUN rm -rf /tmp/fofum |
Andy Bavier | ea97965 | 2015-02-10 14:01:07 -0500 | [diff] [blame] | 80 | |
S.Çağlar Onur | d30d635 | 2015-02-12 11:55:19 -0500 | [diff] [blame] | 81 | RUN mkdir -p /usr/local/share /bin |
| 82 | ADD http://phantomjs.googlecode.com/files/phantomjs-1.7.0-linux-x86_64.tar.bz2 /usr/local/share/ |
S.Çağlar Onur | afb88a5 | 2015-02-12 12:02:10 -0500 | [diff] [blame] | 83 | RUN tar jxvf /usr/local/share/phantomjs-1.7.0-linux-x86_64.tar.bz2 -C /usr/local/share/ |
S.Çağlar Onur | d30d635 | 2015-02-12 11:55:19 -0500 | [diff] [blame] | 84 | RUN rm -f /usr/local/share/phantomjs-1.7.0-linux-x86_64.tar.bz2 |
| 85 | RUN ln -s /usr/local/share/phantomjs-1.7.0-linux-x86_64 /usr/local/share/phantomjs |
| 86 | RUN ln -s /usr/local/share/phantomjs/bin/phantomjs /bin/phantomjs |
| 87 | |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 88 | # Get XOS |
Scott Baker | 2939741 | 2015-02-18 22:30:22 -0800 | [diff] [blame] | 89 | ADD xos /opt/xos |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 90 | |
Scott Baker | 1c36afb | 2015-02-19 13:33:58 -0800 | [diff] [blame] | 91 | # Initscript is broken in Ubuntu |
| 92 | #ADD observer-initscript /etc/init.d/xosobserver |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 93 | |
| 94 | RUN chmod +x /opt/xos/scripts/opencloud |
| 95 | RUN /opt/xos/scripts/opencloud genkeys |
| 96 | |
Andy Bavier | dfcc6e0 | 2015-03-13 14:01:47 -0400 | [diff] [blame] | 97 | # Workaround for AUFS issue |
| 98 | # https://github.com/docker/docker/issues/783#issuecomment-56013588 |
| 99 | RUN mkdir /etc/ssl/private-copy; mv /etc/ssl/private/* /etc/ssl/private-copy/; rm -r /etc/ssl/private; mv /etc/ssl/private-copy /etc/ssl/private; chmod -R 0700 /etc/ssl/private; chown -R postgres /etc/ssl/private |
| 100 | |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 101 | # Set postgres password to match default value in settings.py |
| 102 | RUN service postgresql start; sudo -u postgres psql -c "alter user postgres with password 'password';" |
| 103 | |
| 104 | # Turn DEBUG on so that devel server will serve static files |
S.Çağlar Onur | 29c1f63 | 2015-02-12 11:42:20 -0500 | [diff] [blame] | 105 | RUN sed -i 's/DEBUG = False/DEBUG = True/' /opt/xos/xos/settings.py |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 106 | |
| 107 | # Cruft to workaround problems with migrations, should go away... |
Scott Baker | 6ada925 | 2015-02-18 16:50:48 -0800 | [diff] [blame] | 108 | RUN /opt/xos/scripts/opencloud remigrate |
Andy Bavier | 3704434 | 2015-02-06 16:39:06 -0500 | [diff] [blame] | 109 | |
| 110 | EXPOSE 8000 |
| 111 | |
| 112 | # Set environment variables. |
| 113 | ENV HOME /root |
| 114 | |
| 115 | # Define working directory. |
| 116 | WORKDIR /root |
| 117 | |
| 118 | # Define default command. |
Andy Bavier | c3f9170 | 2015-03-13 14:52:52 -0400 | [diff] [blame] | 119 | #CMD ["/bin/bash"] |
| 120 | CMD service postgresql start; cd /opt/xos; PUBLIC_HOSTNAME=`./xos-config.py get server_hostname $HOSTNAME`; python manage.py runserver $PUBLIC_HOSTNAME:8000 |