We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current payum/server:latest image (image id 3ab4418f87bc) has no XML/DOM extension installed.
payum/server:latest
3ab4418f87bc
There's php7.1-xml installed, but the default version uses php7.2 and therefore looks for extensions in different directory.
/etc/php/7.1/mods-available/ vs /etc/php/7.2/mods-available/
/etc/php/7.1/mods-available/
/etc/php/7.2/mods-available/
I see there's Ondrej's repo added to apt's source lists, so the quick fix is just:
FROM payum/server RUN apt-get update && \ apt-get install -y php7.2-xml
The text was updated successfully, but these errors were encountered:
Same thing for soap and probably some other extensions...
soap
Sorry, something went wrong.
No branches or pull requests
Current
payum/server:latest
image (image id3ab4418f87bc
) has no XML/DOM extension installed.There's php7.1-xml installed, but the default version uses php7.2 and therefore looks for extensions in different directory.
/etc/php/7.1/mods-available/
vs/etc/php/7.2/mods-available/
I see there's Ondrej's repo added to apt's source lists, so the quick fix is just:
The text was updated successfully, but these errors were encountered: