opcache is now default in debian/php
All checks were successful
ci/woodpecker/cron/woodpecker Pipeline was successful

This commit is contained in:
2025-11-23 15:41:52 +01:00
parent a2c1f85d90
commit 7dbe29a892

View File

@@ -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