diff options
Diffstat (limited to '27/apache/Dockerfile')
-rw-r--r-- | 27/apache/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/27/apache/Dockerfile b/27/apache/Dockerfile index 5fb93a29..8456bfc3 100644 --- a/27/apache/Dockerfile +++ b/27/apache/Dockerfile @@ -138,7 +138,7 @@ RUN { \ } > /etc/apache2/conf-available/apache-limits.conf; \ a2enconf apache-limits -ENV NEXTCLOUD_VERSION 27.1.2 +ENV NEXTCLOUD_VERSION 27.1.3 RUN set -ex; \ fetchDeps=" \ @@ -148,8 +148,8 @@ RUN set -ex; \ apt-get update; \ apt-get install -y --no-install-recommends $fetchDeps; \ \ - curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.2.tar.bz2"; \ - curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.2.tar.bz2.asc"; \ + curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.3.tar.bz2"; \ + curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.3.tar.bz2.asc"; \ export GNUPGHOME="$(mktemp -d)"; \ # gpg key from https://nextcloud.com/nextcloud.asc gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \ |