Skip to content

Commit

Permalink
Docker: update dependencies, introduce Composer
Browse files Browse the repository at this point in the history
Relates to #607
Relates to #612
Relates to #624
Relates to #633

See https://github.com/shaarli/Shaarli/wiki/Server-requirements

Modifications:
- [prod][stable] refactor Dockerfile
- [prod][stable] set $TERM=dumb to avoid debconf-related issues
- [prod][stable] install ca-certificates
- [prod][stable] cleanup APT cache after installing packages
- [prod][stable] use Composer to resolve PHP dependencies

Signed-off-by: VirtualTam <virtualtam@flibidi.net>
  • Loading branch information
virtualtam authored and ArthurHoaro committed Nov 5, 2016
1 parent 2945434 commit f9a0b5e
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions docker/production/stable/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,32 @@
FROM debian:jessie
MAINTAINER Shaarli Community

ENV TERM dumb
RUN apt-get update \
&& apt-get install -y curl nginx-light php5-fpm php5-gd supervisor
&& apt-get install --no-install-recommends -y \
ca-certificates \
curl \
nginx-light \
php5-curl \
php5-fpm \
php5-gd \
php5-intl \
supervisor \
&& apt-get clean

COPY nginx.conf /etc/nginx/nginx.conf
COPY supervised.conf /etc/supervisor/conf.d/supervised.conf

ADD https://getcomposer.org/composer.phar /usr/local/bin/composer
RUN chmod 755 /usr/local/bin/composer

WORKDIR /var/www
RUN curl -L https://github.com/shaarli/Shaarli/archive/stable.tar.gz | tar xzf - \
&& mv Shaarli-stable shaarli
&& cd shaarli \
&& composer --prefer-dist --no-dev install
RUN rm -rf html \
&& curl -L https://github.com/shaarli/Shaarli/archive/stable.tar.gz | tar xvzf - \
&& mv Shaarli-stable shaarli \
&& chown -R www-data:www-data shaarli
&& chown -R www-data:www-data .

VOLUME /var/www/shaarli/data

Expand Down

0 comments on commit f9a0b5e

Please sign in to comment.