Fix Docker builds

This commit is contained in:
Pierre Rudloff 2016-12-18 22:41:56 +01:00
parent 734390e269
commit f43da1bc57
3 changed files with 6 additions and 15 deletions

View file

@ -1,15 +1,16 @@
FROM php:5.6-apache
RUN apt-get update
RUN apt-get install -y libicu-dev xz-utils git zlib1g-dev python npm nodejs-legacy
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get install -y libicu-dev xz-utils git zlib1g-dev python nodejs
RUN docker-php-ext-install mbstring
RUN docker-php-ext-install intl
RUN docker-php-ext-install zip
RUN npm install -g bower grunt-cli
RUN a2enmod rewrite
RUN curl -sS https://getcomposer.org/installer | php
COPY php.ini /usr/local/etc/php/
COPY . /var/www/html/
RUN curl -sS https://getcomposer.org/installer | php
RUN php composer.phar install
RUN php composer.phar install --prefer-dist
RUN npm install
RUN bower --allow-root install
RUN grunt