]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - docker/production/stable/Dockerfile
Add a missing backslash in stable Dockerfile version
[github/shaarli/Shaarli.git] / docker / production / stable / Dockerfile
CommitLineData
453f4653
V
1FROM debian:jessie
2MAINTAINER Shaarli Community
3
665279ec 4ENV TERM dumb
453f4653 5RUN apt-get update \
665279ec
V
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
453f4653
V
16
17COPY nginx.conf /etc/nginx/nginx.conf
18COPY supervised.conf /etc/supervisor/conf.d/supervised.conf
19
665279ec
V
20ADD https://getcomposer.org/composer.phar /usr/local/bin/composer
21RUN chmod 755 /usr/local/bin/composer
22
453f4653 23WORKDIR /var/www
665279ec 24RUN curl -L https://github.com/shaarli/Shaarli/archive/stable.tar.gz | tar xzf - \
7329118e 25 && mv Shaarli-stable shaarli \
665279ec
V
26 && cd shaarli \
27 && composer --prefer-dist --no-dev install
453f4653 28RUN rm -rf html \
665279ec 29 && chown -R www-data:www-data .
453f4653
V
30
31VOLUME /var/www/shaarli/data
32
33EXPOSE 80
34
35CMD ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisor/supervisord.conf"]