upgrade nextcloud to 16.0.1
This commit is contained in:
parent
2de0b21e8a
commit
5c2dc4a0a4
1 changed files with 7 additions and 7 deletions
14
Dockerfile
14
Dockerfile
|
@ -1,7 +1,7 @@
|
|||
FROM alpine:3.9 AS builder
|
||||
FROM alpine:3.10 AS builder
|
||||
|
||||
ENV NC_VERSION=15.0.5
|
||||
ENV NC_SHA256_SUM=4661869b797a340cd967abb3dbe6931b375434e0a44480346a27ccd73250b988
|
||||
ENV NC_VERSION=16.0.1
|
||||
ENV NC_SHA256_SUM=a80ce586e9e930b2fba69707311e575346cd4dc4402e84678c730f9930d78aee
|
||||
RUN wget https://download.nextcloud.com/server/releases/nextcloud-$NC_VERSION.tar.bz2
|
||||
RUN echo "$NC_SHA256_SUM nextcloud-$NC_VERSION.tar.bz2" | sha256sum -c - || exit 1
|
||||
RUN mkdir -p /var/lib/nextcloud
|
||||
|
@ -14,15 +14,15 @@ RUN echo "$TFA_SHA256_SUM twofactor_totp.tar.gz" | sha256sum -c - || exit 1
|
|||
RUN mkdir /var/lib/nextcloud/apps/twofactor_totp
|
||||
RUN tar xzf twofactor_totp.tar.gz -C /var/lib/nextcloud/apps/twofactor_totp --strip 1
|
||||
|
||||
ENV U2F_VERSION=v2.1.2
|
||||
ENV U2F_SHA256_SUM=aad32baf2d8bc2cb48ef59370c138965388d37457b7a5799573500fdf026ecc2
|
||||
ENV U2F_VERSION=v3.0.0
|
||||
ENV U2F_SHA256_SUM=bb2be4b4f3367b0ba8c8e78cba727ee521df116d2f76a0a73cf956c710d2c08b
|
||||
RUN wget https://github.com/nextcloud/twofactor_u2f/releases/download/$U2F_VERSION/twofactor_u2f.tar.gz
|
||||
RUN echo "$U2F_SHA256_SUM twofactor_u2f.tar.gz" | sha256sum -c - || exit 1
|
||||
RUN mkdir /var/lib/nextcloud/apps/twofactor_u2f
|
||||
RUN tar xzf twofactor_u2f.tar.gz -C /var/lib/nextcloud/apps/twofactor_u2f --strip 1
|
||||
|
||||
ENV POLLS_VERSION=v0.10.2
|
||||
ENV POLLS_SHA256_SUM=2c43324d4499ff9316d82acd4ea242828da04d21bc463b8cc436d2c7f2c8ed2b
|
||||
ENV POLLS_VERSION=v0.10.3
|
||||
ENV POLLS_SHA256_SUM=43f5a142aebdf32211f05eef01c0a98fbfe18fc6b4b9e1b3f6d3079c55254e0d
|
||||
RUN wget https://github.com/nextcloud/polls/releases/download/$POLLS_VERSION/polls.tar.gz
|
||||
RUN echo "$POLLS_SHA256_SUM polls.tar.gz" | sha256sum -c - || exit 1
|
||||
RUN mkdir /var/lib/nextcloud/apps/polls
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue