Update dependencies

This commit is contained in:
RainLoop Team 2019-03-28 01:01:26 +03:00
parent 80ad4fdbcc
commit 13065dd926
7 changed files with 709 additions and 418 deletions

View file

@ -1,4 +1,4 @@
FROM php:7.1-fpm
FROM php:7.3-fpm
RUN apt-get update
@ -10,9 +10,12 @@ RUN apt-get install -y \
libpng-dev libjpeg62-turbo-dev \
libfontconfig1 libfontconfig1-dev libzip-dev
RUN pecl install mcrypt-1.0.2 && \
docker-php-ext-enable mcrypt
RUN docker-php-ext-configure intl && \
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && \
docker-php-ext-install opcache pdo_mysql mcrypt zip intl gd
docker-php-ext-install opcache pdo_mysql zip intl gd
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer