diff options
author | Remi Collet <remi@remirepo.net> | 2020-11-26 15:13:15 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-11-26 15:13:15 +0100 |
commit | b35abd6303fbee73d1b0075c9c505e22966ec118 (patch) | |
tree | 038185a69caa730d32cf9707322aa1bbfb8e9af3 /ubi8-php74.dockerfile | |
parent | 178635108a3458d42e43cbaf632fe53a6e00f860 (diff) |
add test for official ubi8/php-74 image
Diffstat (limited to 'ubi8-php74.dockerfile')
-rw-r--r-- | ubi8-php74.dockerfile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/ubi8-php74.dockerfile b/ubi8-php74.dockerfile index 73e7520..65c9575 100644 --- a/ubi8-php74.dockerfile +++ b/ubi8-php74.dockerfile @@ -1,14 +1,6 @@ -FROM registry.access.redhat.com/ubi8:latest +FROM registry.access.redhat.com/ubi8/php-74: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 +RUN rpm -qa php\* | sort ENTRYPOINT ["php"] CMD ["-a"] |