FROM registry.access.redhat.com/ubi9:latest # podman build -t ubi9php83 -f ubi9-remi-php83.dockerfile . # podman run --rm -ti ubi9php83 RUN dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm \ https://rpms.remirepo.net/enterprise/remi-release-9.rpm && \ dnf -y module enable php:remi-8.3 && \ dnf -y install httpd php php-cli php-common \ php-sodium \ php-json \ php-mbstring \ php-xml \ && dnf clean all ENTRYPOINT ["php"] CMD ["-a"]