added intl install for php-worker

This commit is contained in:
Silas de Rooy
2022-12-20 12:22:06 +01:00
parent 7d1fb0cd86
commit 05518b1a94
3 changed files with 14 additions and 0 deletions

View File

@ -508,6 +508,18 @@ RUN set -xe; \
&& docker-php-ext-enable ssdb \
;fi
###########################################################################
# Intl:
###########################################################################
ARG INSTALL_INTL=false
RUN if [ ${INSTALL_INTL} = true ]; then \
apk add icu-dev && \
docker-php-ext-configure intl && \
docker-php-ext-install intl && \
docker-php-ext-enable intl \
;fi
############################################################################
## Event: