From 17225d4aca2f7ead33dc6d52608b18e25cb99292 Mon Sep 17 00:00:00 2001
From: hoellen <dev@hoellen.eu>
Date: Mon, 10 Dec 2018 12:11:41 +0100
Subject: [PATCH] update nextcloud to final release 15.0.0

---
 nextcloud/Dockerfile.15.0 | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/nextcloud/Dockerfile.15.0 b/nextcloud/Dockerfile.15.0
index 6c8b90d..a5a9a2e 100644
--- a/nextcloud/Dockerfile.15.0
+++ b/nextcloud/Dockerfile.15.0
@@ -1,6 +1,6 @@
 FROM hoellen/nginx-php:7.2
 
-ARG NEXTCLOUD_VERSION=15.0.0RC3
+ARG NEXTCLOUD_VERSION=15.0.0
 ARG GPG_nextcloud="2880 6A87 8AE4 23A2 8372  792E D758 99B9 A724 937A"
 
 ENV UID=991 GID=991 \
@@ -43,9 +43,9 @@ RUN apk -U upgrade \
  && mkdir /nextcloud \
  && cd /tmp \
  && NEXTCLOUD_TARBALL="nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
- && wget -q https://download.nextcloud.com/server/prereleases/${NEXTCLOUD_TARBALL} \
- && wget -q https://download.nextcloud.com/server/prereleases/${NEXTCLOUD_TARBALL}.sha512 \
- && wget -q https://download.nextcloud.com/server/prereleases/${NEXTCLOUD_TARBALL}.asc \
+ && wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL} \
+ && wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL}.sha512 \
+ && wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL}.asc \
  && wget -q https://nextcloud.com/nextcloud.asc \
  && echo "Verifying both integrity and authenticity of ${NEXTCLOUD_TARBALL}..." \
  && CHECKSUM_STATE=$(echo -n $(sha512sum -c ${NEXTCLOUD_TARBALL}.sha512) | tail -c 2) \