2014-12-25 17:07:50 +08:00
|
|
|
#
|
2014-12-25 18:50:18 +08:00
|
|
|
# Dockerfile for webkit/phantomjs
|
2014-12-25 17:07:50 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
FROM ubuntu:14.04
|
|
|
|
MAINTAINER kev
|
|
|
|
|
2014-12-29 19:46:46 +08:00
|
|
|
RUN echo "Asia/Shanghai" > /etc/timezone
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
2014-12-29 22:30:37 +08:00
|
|
|
RUN apt-get update && apt-get install -y supervisor haproxy libfontconfig1 libfreetype6 nginx
|
|
|
|
RUN mkdir -p /data/ /webkit/includes/ /var/lib/monit/events/
|
2014-12-25 17:07:50 +08:00
|
|
|
|
2014-12-25 18:50:18 +08:00
|
|
|
ADD ./*.js /webkit/
|
|
|
|
ADD ./includes/ /webkit/includes/
|
|
|
|
ADD ./bin/ /usr/local/bin/
|
2014-12-29 18:23:58 +08:00
|
|
|
ADD ./etc/haproxy.cfg /etc/haproxy/
|
|
|
|
ADD ./etc/supervisor/supervisord.conf /etc/supervisor/
|
|
|
|
ADD ./etc/supervisor/conf.d/ /etc/supervisor/conf.d/
|
|
|
|
ADD ./etc/monit/conf.d/ /etc/monit/conf.d/
|
|
|
|
ADD ./etc/nginx.cfg /etc/nginx/sites-enabled/default
|
2014-12-25 18:41:39 +08:00
|
|
|
|
2014-12-25 19:34:44 +08:00
|
|
|
VOLUME /data/
|
2014-12-29 18:00:53 +08:00
|
|
|
EXPOSE 80 1024 2812 9001
|
2014-12-25 17:07:50 +08:00
|
|
|
|
|
|
|
CMD /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf
|
|
|
|
|