2 MAINTAINER Shaarli Community
5 && apt-get install -y \
6 nginx-light php5-fpm php5-gd supervisor \
9 ADD https://getcomposer.org/composer.phar /usr/local/bin/composer
10 RUN chmod 755 /usr/local/bin/composer
12 COPY nginx.conf /etc/nginx/nginx.conf
13 COPY supervised.conf /etc/supervisor/conf.d/supervised.conf
14 RUN echo "<?php phpinfo(); ?>" > /var/www/index.php
18 && git clone https://github.com/shaarli/Shaarli.git shaarli \
19 && chown -R www-data:www-data .
21 WORKDIR /var/www/shaarli
24 VOLUME /var/www/shaarli/data
28 CMD ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisor/supervisord.conf"]