Eric Stenson (work)
Eric Stenson (work)
Are you sure you're on PHP 7.4? ``` PHP Api Version: 20170718 Zend Module Api No: 20170718 Zend Extension Api No: 320170718 ``` Your PHP Api Version looks like it's...
Yes, building manually works: ``` mkdir -p /tmp/pear/temp cd /tmp/pear/temp pecl bundle redis cd redis phpize ./configure --with-php-config=/usr/local/bin/php-config --enable-redis-igbinary=no --enable-redis-lzf=no --enable-redis-zstd=no make ls -l /tmp/pear/temp/redis/modules ```
Actually, I am repro'ing it in a docker container...running on Azure App Service. I'm SSH'ing into the running site's container and executing the pecl/make commands there. Or are you asking...
Our PHP images are based on [Oryx base images](https://hub.docker.com/_/microsoft-oryx-images), and the docker file is generated dynamically. The template we use for PHP 7.4: https://github.com/microsoft/Oryx/tree/master/images/runtime/php/7.4 ```docker build -f -e DEBIAN_FLAVOR=stretch```