# 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