Brought intl extension back to docker images and kept as a requirement

This commit is contained in:
Alejandro Celaya
2019-11-16 09:46:42 +01:00
parent 4437d5305f
commit ec33b95f97
3 changed files with 4 additions and 0 deletions

View File

@@ -17,7 +17,9 @@ RUN \
# Install postgres
apk add --no-cache postgresql-dev && \
docker-php-ext-install -j"$(nproc)" pdo_pgsql && \
# Install intl
apk add --no-cache icu-dev && \
docker-php-ext-install -j"$(nproc)" intl && \
# Install zip and gd
apk add --no-cache libzip-dev zlib-dev libpng-dev && \
docker-php-ext-install -j"$(nproc)" zip gd