alltube/Dockerfile

21 lines
810 B
Docker
Raw Normal View History

FROM php:7.0-apache
2018-07-26 20:37:59 +02:00
RUN apt-get update && apt-get install -my gnupg
2016-12-18 22:41:56 +01:00
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
2017-10-17 16:10:36 +02:00
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN apt-get update
RUN apt-get install -y libicu-dev xz-utils git zlib1g-dev python nodejs libgmp-dev gettext yarn
2015-12-04 11:08:47 +01:00
RUN docker-php-ext-install mbstring
RUN docker-php-ext-install intl
RUN docker-php-ext-install zip
RUN docker-php-ext-install gmp
RUN docker-php-ext-install gettext
2015-12-04 11:08:47 +01:00
RUN a2enmod rewrite
2016-12-18 22:41:56 +01:00
RUN curl -sS https://getcomposer.org/installer | php
2017-05-15 07:25:14 +02:00
COPY resources/php.ini /usr/local/etc/php/
2015-12-04 11:08:47 +01:00
COPY . /var/www/html/
2016-12-18 22:41:56 +01:00
RUN php composer.phar install --prefer-dist
RUN yarn install --prod
2018-01-06 17:53:03 +01:00
RUN yarn grunt
2017-03-29 23:30:15 +02:00
ENV CONVERT=1