We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5e2e7e commit 8ee2229Copy full SHA for 8ee2229
1 file changed
php-fpm/Dockerfile-70
@@ -185,6 +185,18 @@ RUN if [ ${CODEIGNITER} = true ]; then \
185
docker-php-ext-install tokenizer \
186
;fi
187
188
+#####################################
189
+# Human Language and Character Encoding Support:
190
191
+
192
+ARG INTL=false
193
+RUN if [ ${INTL} = true ]; then \
194
+ # Install intl and requirements
195
+ apt-get install -y zlib1g-dev libicu-dev g++ && \
196
+ docker-php-ext-configure intl && \
197
+ docker-php-ext-install intl \
198
+;fi
199
200
#
201
#--------------------------------------------------------------------------
202
# Final Touch
0 commit comments