summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2024-08-08 08:07:24 +0200
committerRemi Collet <remi@php.net>2024-08-08 08:07:24 +0200
commit23d46df40aa2fd0f20b4a1a9e929141fefbb116e (patch)
tree688a04111e104d9e40d2bb9e936ba1969b8e15e3
parent28c418d44f1cac465bffedc69a44c0c2459b40f3 (diff)
add opcache + workaround for capstone
-rw-r--r--ubi9-remi-php83.dockerfile2
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