From 1b8105c3377e9b183ccfad911e7e67d886498071 Mon Sep 17 00:00:00 2001 From: LegeBeker Date: Tue, 7 Apr 2026 17:02:03 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=B3=20Add=20missing=20php=20extens?= =?UTF-8?q?ions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 00e780c..924f89f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -101,9 +101,14 @@ RUN set -ex \ && $SUDO cp -r /etc/apt/sources.list.d /etc/apt/sources.list.d.save \ && for v in $PHP_VERSIONS; do \ $SUDO apt-get install -y --no-install-recommends php"$v" \ + php"$v"-cli \ + php"$v"-common \ php"$v"-dev \ + php"$v"-bcmath \ php"$v"-curl \ + php"$v"-gd \ php"$v"-mbstring \ + php"$v"-opcache \ php"$v"-xml \ php"$v"-intl \ php"$v"-mysql \ From 44e4747ac0bebd765be6d5252e92b1010bc7dd9d Mon Sep 17 00:00:00 2001 From: LegeBeker Date: Tue, 7 Apr 2026 17:15:52 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=90=9B=20Fix=20for=20missing=20packag?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 924f89f..1ba118d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -108,12 +108,12 @@ RUN set -ex \ php"$v"-curl \ php"$v"-gd \ php"$v"-mbstring \ - php"$v"-opcache \ php"$v"-xml \ php"$v"-intl \ php"$v"-mysql \ php"$v"-pgsql \ - php"$v"-zip; \ + php"$v"-zip \ + && ($SUDO apt-get install -y --no-install-recommends php"$v"-opcache 2>/dev/null || true); \ done \ && $SUDO curl -o /usr/bin/systemctl -sL https://raw.githubusercontent.com/shivammathur/node-docker/main/systemctl-shim \ && $SUDO chmod a+x /usr/bin/systemctl \