Compare commits

..

No commits in common. "6672ab6eaa6806db85c2fa4c30a034e5abbe268d" and "1bcc1951046f8a583b32f1fc071517f3e622c5e1" have entirely different histories.

View file

@ -1,6 +1,6 @@
FROM php:8.1-apache
FROM php:8.0-apache
ENV NEXTCLOUD_VERSION 25.0.0
ENV NEXTCLOUD_VERSION 24.0.5
RUN \
apt-get update && \
@ -67,8 +67,14 @@ RUN \
docker-php-ext-enable apcu
# compile imagick from master branch as there isn't any release for php8 yet.
ENV IMAGICK_SHA 448c1cd0d58ba2838b9b6dff71c9b7e70a401b90
RUN \
pecl install imagick && \
curl -L -o /tmp/imagick.tar.gz https://github.com/Imagick/imagick/archive/${IMAGICK_SHA}.tar.gz &&\
tar --strip-components=1 -xf /tmp/imagick.tar.gz &&\
phpize &&\
./configure &&\
make &&\
make install &&\
docker-php-ext-enable imagick
# Activate user-defined .htaccess