]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - docker/production/stable/Dockerfile
Docker: increase maximum file upload size to 10 MiB
[github/shaarli/Shaarli.git] / docker / production / stable / Dockerfile
1 FROM debian:jessie
2 MAINTAINER Shaarli Community
3
4 ENV TERM dumb
5 RUN apt-get update \
6 && apt-get install --no-install-recommends -y \
7 ca-certificates \
8 curl \
9 nginx-light \
10 php5-curl \
11 php5-fpm \
12 php5-gd \
13 php5-intl \
14 supervisor \
15 && apt-get clean
16
17 RUN sed -i 's/post_max_size.*/post_max_size = 10M/' /etc/php5/fpm/php.ini
18 RUN sed -i 's/upload_max_filesize.*/upload_max_filesize = 10M/' /etc/php5/fpm/php.ini
19 COPY nginx.conf /etc/nginx/nginx.conf
20 COPY supervised.conf /etc/supervisor/conf.d/supervised.conf
21
22 ADD https://getcomposer.org/composer.phar /usr/local/bin/composer
23 RUN chmod 755 /usr/local/bin/composer
24
25 WORKDIR /var/www
26 RUN curl -L https://github.com/shaarli/Shaarli/archive/stable.tar.gz | tar xzf - \
27 && mv Shaarli-stable shaarli \
28 && cd shaarli \
29 && composer --prefer-dist --no-dev install
30 RUN rm -rf html \
31 && chown -R www-data:www-data .
32
33 VOLUME /var/www/shaarli/data
34
35 EXPOSE 80
36
37 CMD ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisor/supervisord.conf"]