update 30.0.8

This commit is contained in:
bsod 2025-04-07 21:32:20 +02:00
parent 6a572d7133
commit 1f06fb628e

View file

@ -1,6 +1,6 @@
FROM php:8.2-apache FROM php:8.3-apache
ENV NEXTCLOUD_VERSION 27.1.11 ENV NEXTCLOUD_VERSION 30.0.8
RUN \ RUN \
apt-get update && \ apt-get update && \
@ -71,8 +71,10 @@ RUN \
RUN \ RUN \
pecl install -o -f apcu && \ pecl install -o -f apcu && \
pecl install -o -f redis && \
rm -rf /tmp/pear && \ rm -rf /tmp/pear && \
docker-php-ext-enable apcu docker-php-ext-enable apcu && \
docker-php-ext-enable redis
# compile imagick from master branch as there isn't any release for php8 yet. # compile imagick from master branch as there isn't any release for php8 yet.
RUN \ RUN \