From 65be51cb2bfaff134d481484daca2c554de10849 Mon Sep 17 00:00:00 2001 From: Cedric Ziel Date: Thu, 11 Feb 2021 08:26:11 +0100 Subject: [PATCH] Install opcache PHP extension --- ratings/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ratings/Dockerfile b/ratings/Dockerfile index ff89e02..298d64a 100644 --- a/ratings/Dockerfile +++ b/ratings/Dockerfile @@ -10,7 +10,7 @@ RUN composer install # FROM php:7.4-apache -RUN docker-php-ext-install pdo_mysql +RUN docker-php-ext-install pdo_mysql opcache # Enable AutoProfile for PHP which is currently opt-in beta RUN echo "instana.enable_auto_profile=1" > "/usr/local/etc/php/conf.d/zzz-instana-extras.ini"