From 431c61f82425ef54f223776e70e8d02c6ad84d00 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Mon, 31 Mar 2025 14:04:44 +0200 Subject: [PATCH] symlink php84 to php --- Containerfile | 6 ++++-- rootfs/etc/{php83 => php84}/conf.d/enable_apcu_for_cli.ini | 0 2 files changed, 4 insertions(+), 2 deletions(-) rename rootfs/etc/{php83 => php84}/conf.d/enable_apcu_for_cli.ini (100%) diff --git a/Containerfile b/Containerfile index 72cd181..56cec23 100644 --- a/Containerfile +++ b/Containerfile @@ -67,8 +67,8 @@ RUN apk add --no-cache \ nginx \ ffmpeg \ php84-cli \ - php83-pecl-apcu \ - php83-opcache \ + php84-pecl-apcu \ + php84-opcache \ php84-pcntl \ php84-ctype \ php84-curl \ @@ -97,6 +97,8 @@ RUN apk add --no-cache \ php84-pdo \ dcron +RUN ln -s /usr/bin/php84 /bin/php + COPY --from=builder --chown=nginx:nginx /var/lib/nextcloud /var/lib/nextcloud RUN rm /etc/nginx/http.d/default.conf diff --git a/rootfs/etc/php83/conf.d/enable_apcu_for_cli.ini b/rootfs/etc/php84/conf.d/enable_apcu_for_cli.ini similarity index 100% rename from rootfs/etc/php83/conf.d/enable_apcu_for_cli.ini rename to rootfs/etc/php84/conf.d/enable_apcu_for_cli.ini