From bd069d2244e014f70f5d478fec53144488775df7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dalibor=20Karlovi=C4=87?= Date: Fri, 9 Jun 2023 11:28:18 +0200 Subject: [PATCH 1/2] feat: enable Opcache in CLI --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9004e4c..50c7478 100644 --- a/Dockerfile +++ b/Dockerfile @@ -151,6 +151,12 @@ phar.readonly=0 pcov.enabled=0 EOF +COPY --link < Date: Fri, 9 Jun 2023 13:05:48 +0200 Subject: [PATCH 2/2] feat: check Opcache works --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 50c7478..f7ed4a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -159,6 +159,7 @@ EOF # Validate the PHP configuration RUN php --ini | grep phpqa.ini +RUN php --rz "Zend OPcache" ARG TOOLBOX_TARGET_DIR="/tools" ENV TOOLBOX_TARGET_DIR="${TOOLBOX_TARGET_DIR}"