2014-11-20 18:48:51 +00:00
|
|
|
# vim:ft=dockerfile
|
2014-10-07 21:10:46 +00:00
|
|
|
FROM phusion/baseimage:0.9.15
|
2014-05-16 22:31:24 +00:00
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
ENV HOME /root
|
|
|
|
|
|
|
|
# Install the dependencies.
|
2014-09-10 18:43:10 +00:00
|
|
|
RUN apt-get update # 10SEP2014
|
2014-05-16 22:31:24 +00:00
|
|
|
|
|
|
|
# New ubuntu packages should be added as their own apt-get install lines below the existing install commands
|
2014-11-25 00:25:13 +00:00
|
|
|
RUN apt-get install -y git python-virtualenv python-dev libjpeg8 libjpeg62 libjpeg62-dev libevent-2.0.5 libevent-dev gdebi-core g++ libmagic1 phantomjs nodejs npm libldap-2.4-2 libldap2-dev libsasl2-modules libsasl2-dev libpq5 libpq-dev libfreetype6-dev
|
2014-05-16 22:31:24 +00:00
|
|
|
|
2014-07-18 03:17:43 +00:00
|
|
|
# Build the python dependencies
|
|
|
|
ADD requirements.txt requirements.txt
|
|
|
|
RUN virtualenv --distribute venv
|
|
|
|
RUN venv/bin/pip install -r requirements.txt
|
2014-05-22 16:13:41 +00:00
|
|
|
|
2014-10-15 16:03:52 +00:00
|
|
|
RUN apt-get remove -y --auto-remove python-dev g++ libjpeg62-dev libevent-dev libldap2-dev libsasl2-dev libpq-dev
|
|
|
|
|
|
|
|
### End common section ###
|
|
|
|
|
2014-11-19 21:35:33 +00:00
|
|
|
# Remove SSH.
|
|
|
|
RUN rm -rf /etc/service/sshd /etc/my_init.d/00_regen_ssh_host_keys.sh
|
|
|
|
|
2014-07-18 03:17:43 +00:00
|
|
|
# Install the binary dependencies
|
2014-05-16 22:31:24 +00:00
|
|
|
ADD binary_dependencies binary_dependencies
|
|
|
|
RUN gdebi --n binary_dependencies/*.deb
|
|
|
|
|
2014-11-05 17:45:14 +00:00
|
|
|
# Install Grunt
|
2014-07-18 03:17:43 +00:00
|
|
|
RUN ln -s /usr/bin/nodejs /usr/bin/node
|
|
|
|
RUN npm install -g grunt-cli
|
2014-05-16 22:31:24 +00:00
|
|
|
|
2014-11-05 17:45:14 +00:00
|
|
|
# Install Grunt depenencies
|
|
|
|
ADD grunt grunt
|
|
|
|
RUN cd grunt && npm install
|
|
|
|
|
2014-07-18 03:17:43 +00:00
|
|
|
# Add all of the files!
|
|
|
|
ADD . .
|
2014-05-16 22:31:24 +00:00
|
|
|
|
2014-07-18 03:17:43 +00:00
|
|
|
# Run grunt
|
2014-05-22 16:13:41 +00:00
|
|
|
RUN cd grunt && grunt
|
|
|
|
|
2014-05-18 21:19:14 +00:00
|
|
|
ADD conf/init/svlogd_config /svlogd_config
|
2014-08-25 18:23:21 +00:00
|
|
|
ADD conf/init/doupdatelimits.sh /etc/my_init.d/
|
2014-05-18 21:19:14 +00:00
|
|
|
ADD conf/init/preplogsdir.sh /etc/my_init.d/
|
2014-05-22 16:13:41 +00:00
|
|
|
ADD conf/init/runmigration.sh /etc/my_init.d/
|
|
|
|
|
2014-10-14 17:58:08 +00:00
|
|
|
ADD conf/init/gunicorn_web /etc/service/gunicorn_web
|
|
|
|
ADD conf/init/gunicorn_registry /etc/service/gunicorn_registry
|
|
|
|
ADD conf/init/gunicorn_verbs /etc/service/gunicorn_verbs
|
2014-05-18 21:19:14 +00:00
|
|
|
ADD conf/init/nginx /etc/service/nginx
|
|
|
|
ADD conf/init/diffsworker /etc/service/diffsworker
|
2014-07-31 17:30:54 +00:00
|
|
|
ADD conf/init/notificationworker /etc/service/notificationworker
|
2014-09-12 15:57:47 +00:00
|
|
|
ADD conf/init/buildlogsarchiver /etc/service/buildlogsarchiver
|
2014-11-25 23:08:18 +00:00
|
|
|
ADD conf/init/buildmanager /etc/service/buildmanager
|
2014-07-31 17:30:54 +00:00
|
|
|
|
2014-05-22 16:13:41 +00:00
|
|
|
# Download any external libs.
|
2014-07-18 03:17:43 +00:00
|
|
|
RUN mkdir static/fonts static/ldn
|
2014-05-22 16:13:41 +00:00
|
|
|
RUN venv/bin/python -m external_libraries
|
2014-05-16 22:31:24 +00:00
|
|
|
|
2014-10-15 16:03:52 +00:00
|
|
|
RUN apt-get autoremove -y
|
|
|
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
|
2014-07-18 03:17:43 +00:00
|
|
|
# Run the tests
|
2014-05-16 22:31:24 +00:00
|
|
|
RUN TEST=true venv/bin/python -m unittest discover
|
|
|
|
|
2014-09-16 03:44:35 +00:00
|
|
|
VOLUME ["/conf/stack", "/var/log", "/datastorage", "/tmp"]
|
2014-05-16 22:31:24 +00:00
|
|
|
|
|
|
|
EXPOSE 443 80
|
|
|
|
|
2014-11-20 18:48:51 +00:00
|
|
|
CMD ["/sbin/my_init"]
|