1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-10 11:10:27 +02:00
dockerfiles/webkit/Dockerfile

31 lines
819 B
Docker
Raw Normal View History

2014-12-25 11:07:50 +02:00
#
2014-12-25 12:50:18 +02:00
# Dockerfile for webkit/phantomjs
2014-12-25 11:07:50 +02:00
#
FROM ubuntu:14.04
MAINTAINER kev
2014-12-29 13:46:46 +02:00
RUN echo "Asia/Shanghai" > /etc/timezone
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
2015-02-03 12:39:38 +02:00
RUN apt-get update && apt-get install -y supervisor haproxy nginx libfontconfig1 libfreetype6 fontconfig libicu52
2014-12-29 17:31:39 +02:00
RUN mkdir -p /data/ /webkit/includes/
2014-12-25 11:07:50 +02:00
2014-12-25 12:50:18 +02:00
ADD ./*.js /webkit/
ADD ./includes/ /webkit/includes/
ADD ./bin/ /usr/local/bin/
2014-12-29 12:23:58 +02:00
ADD ./etc/supervisor/supervisord.conf /etc/supervisor/
ADD ./etc/supervisor/conf.d/ /etc/supervisor/conf.d/
2014-12-30 11:01:57 +02:00
ADD ./etc/haproxy.cfg /etc/haproxy/
2014-12-29 12:23:58 +02:00
ADD ./etc/nginx.cfg /etc/nginx/sites-enabled/default
2014-12-30 11:01:57 +02:00
ADD ./etc/monitrc /etc/
ADD ./fonts/ /usr/local/share/fonts/
2014-12-25 12:41:39 +02:00
2014-12-30 07:05:20 +02:00
RUN chmod 600 /etc/monitrc
2014-12-30 11:01:57 +02:00
RUN fc-cache -f -v
2014-12-30 07:05:20 +02:00
2014-12-25 13:34:44 +02:00
VOLUME /data/
2014-12-29 12:00:53 +02:00
EXPOSE 80 1024 2812 9001
2014-12-25 11:07:50 +02:00
CMD /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf