From 75e0d671c761117466f5516f1e1835b02ae34a5e Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Tue, 13 Dec 2016 22:32:00 +0100 Subject: [PATCH] nextcloud: update to 11.0 stable --- nextcloud/11.0/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nextcloud/11.0/Dockerfile b/nextcloud/11.0/Dockerfile index e0307bb..98c88ca 100644 --- a/nextcloud/11.0/Dockerfile +++ b/nextcloud/11.0/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:edge MAINTAINER Wonderfall -ARG NEXTCLOUD_VERSION=11.0.0RC2 +ARG NEXTCLOUD_VERSION=11.0.0 ARG GNU_LIBICONV_VERSION=1.14 ARG GPG_nextcloud="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A" @@ -83,9 +83,9 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a && echo "extension=smbclient.so" > /etc/php7/conf.d/00_smbclient.ini \ && mkdir /nextcloud \ && 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}.sha256 \ - && 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}.sha256 \ + && 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 $(sha256sum -c ${NEXTCLOUD_TARBALL}.sha256) | tail -c 2) \