php-fpm/7.1.33/extra.Dockerfile
2023-10-14 23:50:51 +05:00

18 lines
319 B
Docker

# Install Image Magick
RUN apt-get update \
&& apt-get install libmagickwand-dev --no-install-recommends -y \
&& pecl install imagick \
&& docker-php-ext-enable imagick
# Install intl
RUN apt-get -y update \
&& apt-get install -y libicu-dev \
&& docker-php-ext-configure intl \
&& docker-php-ext-install intl