From 43327fac38f7ae7967b8e50aa339d43679df15a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Wed, 15 Nov 2023 20:54:07 +0100 Subject: [PATCH] fix: add pdo_pgsql and pgsql php mods --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7590d27..440128d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ FROM mediawiki:stable -RUN apt-get update && apt-get install -y wget tar unzip +RUN apt-get update && apt-get install -y wget tar unzip libpq-dev +RUN docker-php-ext-configure pdo_pgsql +RUN docker-php-ext-configure pgsql --with-pgsql=/usr/local/pgsql + RUN wget https://extdist.wmflabs.org/dist/extensions/PluggableAuth-REL1_40-eb10a76.tar.gz RUN tar -xzf PluggableAuth-REL1_40-eb10a76.tar.gz -C /var/www/html/extensions