fix: add pdo_pgsql and pgsql php mods

This commit is contained in:
Benjamin Bädorf 2023-11-15 20:54:07 +01:00
parent 226d9c0bc9
commit 43327fac38
No known key found for this signature in database
GPG key ID: 1B7BF5B77A521346

View file

@ -1,6 +1,9 @@
FROM mediawiki:stable 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 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 RUN tar -xzf PluggableAuth-REL1_40-eb10a76.tar.gz -C /var/www/html/extensions