FROM registry.access.redhat.com/ubi8:latest RUN dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm \ https://rpms.remirepo.net/enterprise/remi-release-8.rpm && \ dnf -y module enable php:remi-7.4 && \ dnf -y install httpd php php-cli php-common \ php-sodium \ php-json \ php-mbstring \ php-xml \ && dnf clean all ENTRYPOINT ["php"] CMD ["-a"]