|
|
@@ -59,17 +59,24 @@ RUN wget http://archive.ubuntu.com/ubuntu/pool/main/g/glibc/multiarch-support_2.
|
|
|
rm libpng12-0_1.2.50-2+deb8u3_amd64.deb libssl1.0.0_1.0.1t-1+deb8u12_amd64.deb \
|
|
|
multiarch-support_2.27-3ubuntu1.5_amd64.deb wkhtmltox_0.12.5-1.jessie_amd64.deb
|
|
|
|
|
|
-RUN docker-php-ext-configure intl; \
|
|
|
- docker-php-ext-install opcache pdo_mysql mbstring exif bcmath calendar gd intl tidy; \
|
|
|
- docker-php-ext-enable exif; \
|
|
|
- docker-php-ext-enable tidy; \
|
|
|
- docker-php-ext-install zip; \
|
|
|
- docker-php-ext-install xsl; \
|
|
|
- # IMAGICK
|
|
|
- pecl install imagick-3.4.3RC2; \
|
|
|
- docker-php-ext-enable imagick; \
|
|
|
+RUN docker-php-ext-configure intl \
|
|
|
+ && docker-php-ext-install \
|
|
|
+ intl \
|
|
|
+ opcache \
|
|
|
+ pdo_mysql \
|
|
|
+ exif \
|
|
|
+ bcmath \
|
|
|
+ calendar \
|
|
|
+ gd \
|
|
|
+ tidy
|
|
|
+RUN docker-php-ext-enable intl
|
|
|
+RUN docker-php-ext-enable exif
|
|
|
+RUN docker-php-ext-enable tidy
|
|
|
+RUN docker-php-ext-install zip
|
|
|
+RUN docker-php-ext-install xsl
|
|
|
+
|
|
|
## APCU
|
|
|
- pecl install apcu-5.1.21
|
|
|
+RUN pecl install apcu-5.1.21
|
|
|
|
|
|
## COMPOSER
|
|
|
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"; \
|