From 7dbe29a89276a390b5d56c9f4462ef097586e833 Mon Sep 17 00:00:00 2001 From: damage Date: Sun, 23 Nov 2025 15:41:52 +0100 Subject: [PATCH] opcache is now default in debian/php --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index cfd6be1..7d9837b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM php:8-apache -ENV DEBIAN_FRONTEND noninterative +ENV DEBIAN_FRONTEND=noninterative # Tools RUN apt-get update && apt-get install -y libxml2-utils git @@ -13,9 +13,6 @@ COPY conf/zz_prod.conf /etc/apache2/conf-available RUN a2enconf zz_prod # PHP Modules -## opcache -RUN docker-php-ext-configure opcache && docker-php-ext-install -j$(nproc) opcache - ## pgsql RUN apt-get install -y libpq-dev && docker-php-ext-configure pgsql && docker-php-ext-install pgsql