I'm not sure but after facing the same problem (solved in the same way@robbydooodid) I've realized that Symfony Standard Edition (through itssymfony/intlcomponent) and CakePHP >= 3 both depend onintlphp extensio
目前可供docker-php-ext-install安装的扩展有: bcmath bz2 calendar ctype curl dba dom enchant exif fileinfo filter ftp gd gettext gmp hash iconv imap interbase intl json ldap mbstring mysqli oci8 odbc opcache pcntl pdo pdo_dblib pdo_firebird pdo_mysql pdo_oci pdo_odbc pdo_pgsql pdo_sqlite pg...
ERROR: Service 'engine' failed to build: The command '/bin/sh -c docker-php-ext-install intl' returned a non-zero code: 2 I try several solutions but I have always the same error. I think I miss something but I do not know what ......
RUN docker-php-ext-install mcrypt RUN apt install -y libicu-dev RUN docker-php-ext-install -j$(nproc) intl RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ RUN...
bcmath bz2 calendar ctype curl dba dom enchant exif fileinfo filter ftp gd gettext gmp hash iconv imap interbase intl json ldap mbstring mysqli oci8 odbc opcache pcntl pdo pdo_dblib pdo_firebird pdo_mysql pdo_oci pdo_odbc pdo_pgsql pdo_sqlite pgsql phar posix pspell readline recode reflection...
docker-php-ext-install intl \ && pecl install apcu \ && docker-php-ext-enable apcu \ && docker-php-ext-configure zip \ && docker-php-ext-install zip \ && docker-php-ext-install xsl RUN apt-get update \ && docker-php-ext-install opcache RUN apt-get update \ && apt-get install -...
这段代码可以安装任何你想要的扩展,在这个例子中是mysqlpdp驱动程序,但是Dockerfile应该以FROM php:7.1...
为了解决问题,我现在尝试通过安装mysql pdo docker-php-ext-install Run Code Online (Sandbox Code Playgroud) 正如php图像的自述文件中所指出的那样. 然而,我的电话未能说明: Libraries have been installed in: /usr/src/php/ext/mysqli/modules If you ever happen to want to link against installed librarie...
If I sh into the container, I can also confirm that/usr/local/bin/docker-php-ext-installdoes not exist. Code snippet that reproduces the problem This is my Dockerfile: FROM phpstan/phpstan:latest RUN apk update RUN apk add icu-dev RUN docker-php-ext-install intl ...