From 9e5bdcf422850ad021aa058908a3da333412fddd Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 1 Feb 2024 16:21:07 +0100 Subject: add some EL-9 test images --- alma9-remi-php83.dockerfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 alma9-remi-php83.dockerfile (limited to 'alma9-remi-php83.dockerfile') diff --git a/alma9-remi-php83.dockerfile b/alma9-remi-php83.dockerfile new file mode 100644 index 0000000..ec36fbb --- /dev/null +++ b/alma9-remi-php83.dockerfile @@ -0,0 +1,18 @@ +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"] + -- cgit