We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd55114 commit 624d6cfCopy full SHA for 624d6cf
Dockerfile
@@ -55,6 +55,13 @@ RUN docker-php-ext-configure pdo_mysql && \
55
RUN docker-php-ext-install pdo_mysql opcache exif gd zip && \
56
docker-php-source delete
57
58
+# xml-core
59
+RUN apk add libxml2 libxml2-dev libxslt-dev icu-dev && \
60
+ docker-php-ext-install xsl calendar
61
+
62
+RUN docker-php-ext-configure intl --enable-intl && \
63
+ docker-php-ext-install intl
64
65
COPY default.conf /etc/nginx/conf.d/default.conf
66
COPY entrypoint.sh /entrypoint.sh
67
COPY php-fpm.conf /etc/php7/php-fpm.conf
0 commit comments