thecodingmachine / docker-images-php

A set of PHP Docker images
MIT License
785 stars 138 forks source link

SOAP extension is missing for PHP 8.0 CLI image #331

Closed Wohlie closed 2 years ago

Wohlie commented 2 years ago

Hi, I'm using the docker CLI images from 7.2 up to 8.1 in our CI pipeline. All jobs perform well, except 8.0 which fail due to the missing SOAP extension.

Expected Behavior

SOAP extension must be available.

Current Behavior

SOAP extension is not available.

Steps to Reproduce (for bugs)

docker run thecodingmachine/php:8.0-v4-cli -- php -m | grep soap 
mistraloz commented 2 years ago

I'm confirm the fix

Wohlie commented 2 years ago

CI pipeline is green now. Thanks, @mistraloz!