diff options
Diffstat (limited to 'ubi9-remi-php83.dockerfile')
-rw-r--r-- | ubi9-remi-php83.dockerfile | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/ubi9-remi-php83.dockerfile b/ubi9-remi-php83.dockerfile index fb2901c..4fc9a9d 100644 --- a/ubi9-remi-php83.dockerfile +++ b/ubi9-remi-php83.dockerfile @@ -1,19 +1,28 @@ -FROM almalinux:9 +FROM registry.access.redhat.com/ubi9:latest -# podman build -t alma9php83 -f alma9-remi-php83.dockerfile . -# podman run --rm -ti alma9php83 +# podman build -t ubi9php83 -f ubi9-remi-php83.dockerfile . +# podman run --rm -ti ubi9php83 +# Install repo RUN dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm \ - https://rpms.remirepo.net/enterprise/remi-release-9.rpm && \ - dnf -y module enable php:remi-8.3 && \ + https://rpms.remirepo.net/enterprise/remi-release-9.rpm + +# Use primary server (when needed for new content) +#RUN sed -e 's/^mirrorlist/#mirrorlist/;s/#baseurl/baseurl/' \ +# -i /etc/yum.repos.d/remi*.repo + +# Install +RUN dnf -y module enable php:remi-8.3 && \ dnf -y install httpd php php-cli php-common \ php-sodium \ php-json \ php-mbstring \ - php-imagick \ + php-opcache \ php-xml \ && dnf clean all +RUN dnf install -y php-gd + ENTRYPOINT ["php"] CMD ["-a"] |