Hello,
- Ubuntu 20.04.6 LTS
- php:8.2.10-apache
- Docker version 20.10.16, build aa7e414
- Installation of the intl extension via docker-php-ext-install
- Previously created a /usr/local/etc/php/conf.d/custom.ini with some PHP common settings tweaks (memory, file limits, etc.) in the Dockerfile
What happened?
- “PHP Startup: Unable to load dynamic library ‘php_intl.dll’”
- At the very end of the /usr/local/etc/php/conf.d/custom.ini there was the line extension=php_intl.dll after the build process completed successfully.
Solved by removing the image and rebuilding everything from scratch. My question is: how is it possible that a reference to a DLL file (Windows) has been added under Linux?
Thanks in advance.