summaryrefslogtreecommitdiffstats
path: root/ubi8-php74.dockerfile
blob: 0e8c1e9b0e53a741b17a120010b03448272adcdf (plain)
1
2
3
4
5
6
7
8
9
10
11
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"]