From 9c0b29ccf61cd8738a124cb706056e91879d2063 Mon Sep 17 00:00:00 2001
From: Chris <bsod@zom.bi>
Date: Fri, 20 Nov 2020 10:59:13 +0100
Subject: [PATCH] update nextcloud to version 20.0.2 and update php from 7.3 to
 7.4

---
 webservice/Dockerfile | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/webservice/Dockerfile b/webservice/Dockerfile
index ef23d65..8892316 100644
--- a/webservice/Dockerfile
+++ b/webservice/Dockerfile
@@ -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 \
     apt-get update && \
@@ -44,7 +44,7 @@ RUN \
 
 RUN \
     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 \
         ldap \
         ctype \
@@ -53,7 +53,6 @@ RUN \
         gmp \
         iconv \
         json \
-        mbstring \
         xmlwriter \
         zip \
         pdo_mysql \