feat: add postgres php modules

adds postgres headers and the php modules for pdo_pgsql so you can run
nextcloud with a postgres database backend
This commit is contained in:
bsod 2023-07-22 13:53:54 +02:00
parent 1aa8a340d6
commit 59038d9a9f

View file

@ -25,6 +25,7 @@ RUN \
libjpeg-dev \
libgmp-dev \
curl \
libpq-dev \
cron && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
@ -61,7 +62,9 @@ RUN \
bcmath \
sysvsem \
pcntl \
opcache && \
opcache \
pdo_pgsql \
pdo && \
CFLAGS="-I/usr/src/php" docker-php-ext-install xmlreader
RUN \