My Dockerfile:
FROM php:7.0-fpm
RUN apt-get update && \
apt-get install -y libicu-dev && \
docker-php-ext-install intl
When I run the symfony requirements binary, I got this message:
* intl ICU version installed on your system is outdated (52.1) and
does not match the ICU data bundled with Symfony (57.1)
> To get the latest internationalization data upgrade the ICU
> system package and the intl PHP extension.
Do you know how can I get the latest ICU version ?
Thanks
My Dockerfile:
When I run the symfony requirements binary, I got this message:
Do you know how can I get the latest ICU version ?
Thanks