Compare commits

...

3 commits

Author SHA1 Message Date
a7e9241cd4 Merge pull request '27.0.2' (#29) from 27.0.2 into master
Reviewed-on: #29
2023-08-12 21:35:43 +02:00
306bb788c9 update nextcloud to 27.0.2 2023-08-11 09:37:44 +02:00
59038d9a9f 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
2023-08-11 09:36:59 +02:00

View file

@ -1,6 +1,6 @@
FROM php:8.2-apache
ENV NEXTCLOUD_VERSION 27.0.1
ENV NEXTCLOUD_VERSION 27.0.2
RUN \
apt-get update && \
@ -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 \