blob: 99ba3aba779537718e686add8087a7dfa39736b1 (
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 php-cli php-common php-sodium php-json php-mbstring php-xml && \
dnf clean all
ENTRYPOINT ["php"]
CMD ["-a"]
|