From 9793d15a4cbea8092b14863682578b901f96d23f Mon Sep 17 00:00:00 2001 From: Steven vanZyl Date: Fri, 9 Feb 2018 17:43:48 -0500 Subject: [PATCH] update v13 dockerfile --- Dockerfile.13.0 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.13.0 b/Dockerfile.13.0 index 12c5e7c0..3dac64e5 100644 --- a/Dockerfile.13.0 +++ b/Dockerfile.13.0 @@ -1,6 +1,6 @@ FROM wonderfall/nginx-php:7.2 -ARG NEXTCLOUD_VERSION=13.0.0RC2 +ARG NEXTCLOUD_VERSION=13.0.0 ARG GPG_nextcloud="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A" ENV UID=991 GID=991 \ @@ -38,9 +38,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) \