alltube/Dockerfile

16 lines
538 B
Docker
Raw Normal View History

2016-04-16 16:24:07 +00:00
FROM php:5.6-apache
2015-12-04 10:08:47 +00:00
RUN apt-get update
2016-12-18 21:41:56 +00:00
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
2015-12-04 10:08:47 +00:00
RUN docker-php-ext-install mbstring
RUN docker-php-ext-install intl
RUN docker-php-ext-install zip
RUN a2enmod rewrite
2016-12-18 21:41:56 +00:00
RUN curl -sS https://getcomposer.org/installer | php
2015-12-04 10:08:47 +00:00
COPY php.ini /usr/local/etc/php/
COPY . /var/www/html/
2016-12-18 21:41:56 +00:00
RUN php composer.phar install --prefer-dist
2015-12-04 10:08:47 +00:00
RUN npm install
RUN ./node_modules/.bin/bower --allow-root install
RUN ./node_modules/.bin/grunt