diff options
author | Remi Collet <remi@remirepo.net> | 2024-08-08 08:07:24 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-08-08 08:07:24 +0200 |
commit | 23d46df40aa2fd0f20b4a1a9e929141fefbb116e (patch) | |
tree | 688a04111e104d9e40d2bb9e936ba1969b8e15e3 | |
parent | 28c418d44f1cac465bffedc69a44c0c2459b40f3 (diff) |
add opcache + workaround for capstone
-rw-r--r-- | ubi9-remi-php83.dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ubi9-remi-php83.dockerfile b/ubi9-remi-php83.dockerfile index ec36fbb..fc4da1a 100644 --- a/ubi9-remi-php83.dockerfile +++ b/ubi9-remi-php83.dockerfile @@ -4,12 +4,14 @@ FROM registry.access.redhat.com/ubi9:latest # podman run --rm -ti ubi9php83 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 && \ dnf -y install httpd php php-cli php-common \ php-sodium \ php-json \ php-mbstring \ + php-opcache \ php-xml \ && dnf clean all |