diff options
-rw-r--r-- | ubi9-remi-php83.dockerfile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/ubi9-remi-php83.dockerfile b/ubi9-remi-php83.dockerfile index fc4da1a..5562833 100644 --- a/ubi9-remi-php83.dockerfile +++ b/ubi9-remi-php83.dockerfile @@ -3,10 +3,16 @@ FROM registry.access.redhat.com/ubi9:latest # 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://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/capstone-4.0.2-10.el9.x86_64.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 +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 \ |