This commit is contained in:
2023-10-14 23:50:51 +05:00
commit 5d1a7c80df
17 changed files with 6180 additions and 0 deletions

17
7.1.33/extra.Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# 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