-
This is a question. I normally build/install php extensions using this DockerFile: https://github.com/mvorisek/image-php/blob/master/data/8.0-debian/Dockerfile Is there any simple way how can I use https://github.com/php/php-src/pull/8018/files to build the pdo_oci ext to test the php-src fix? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
You could try the following:
|
Beta Was this translation helpful? Give feedback.
-
PS: for general discussions what about using https://github.com/mlocati/docker-php-extension-installer/discussions ? |
Beta Was this translation helpful? Give feedback.
-
thanks for a quick reply, will try later today
we can transfer it there 👍, it can be helpful for others |
Beta Was this translation helpful? Give feedback.
-
Done 😉 |
Beta Was this translation helpful? Give feedback.
You could try the following:
docker-php-source extract
/usr/src/php
(you could try to download the patch available at https://github.com/php/php-src/pull/8018.patch and to apply it with thepatch
command)install-php-extensions
command as usual