From 7489433db1aeabbe2c65cb1effa99ad1b693daab Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 27 Aug 2020 08:59:36 +0200 Subject: add php 7.3 + redis (build from sources) example --- ubi8-php74.dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'ubi8-php74.dockerfile') diff --git a/ubi8-php74.dockerfile b/ubi8-php74.dockerfile index 0e8c1e9..73e7520 100644 --- a/ubi8-php74.dockerfile +++ b/ubi8-php74.dockerfile @@ -3,8 +3,12 @@ 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 + 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