update Nextcloud to 15.0.12, 16.0.5 and final 17.0.0

This commit is contained in:
hoellen 2019-09-25 20:33:46 +02:00
parent b1c9aeab11
commit 092e314edd
3 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
FROM hoellen/nginx-php:7.3
ARG NEXTCLOUD_VERSION=15.0.11
ARG NEXTCLOUD_VERSION=15.0.12
ARG GPG_nextcloud="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A"
ENV UID=991 GID=991 \

View File

@ -1,6 +1,6 @@
FROM hoellen/nginx-php:7.3
ARG NEXTCLOUD_VERSION=16.0.4
ARG NEXTCLOUD_VERSION=16.0.5
ARG GPG_nextcloud="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A"
ENV UID=991 GID=991 \

View File

@ -1,6 +1,6 @@
FROM hoellen/nginx-php:7.3
ARG NEXTCLOUD_VERSION=17.0.0RC2
ARG NEXTCLOUD_VERSION=17.0.0
ARG GPG_nextcloud="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A"
ENV UID=991 GID=991 \
@ -48,9 +48,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) \