blob: 73e752035d09d699892ef548c7b05d6cc044e965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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"]
|