update nextcloud to version 20.0.2 and update php from 7.3 to 7.4

This commit is contained in:
bsod 2020-11-20 10:59:13 +01:00
parent 7a913b6989
commit 9c0b29ccf6
1 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
FROM php:7.3-apache FROM php:7.4-apache
ENV NEXTCLOUD_VERSION 20.0.1 ENV NEXTCLOUD_VERSION 20.0.2
RUN \ RUN \
apt-get update && \ apt-get update && \
@ -44,7 +44,7 @@ RUN \
RUN \ RUN \
docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu && \ docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu && \
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && \ docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ && \
docker-php-ext-install \ docker-php-ext-install \
ldap \ ldap \
ctype \ ctype \
@ -53,7 +53,6 @@ RUN \
gmp \ gmp \
iconv \ iconv \
json \ json \
mbstring \
xmlwriter \ xmlwriter \
zip \ zip \
pdo_mysql \ pdo_mysql \