push to nextcloud 19
This commit is contained in:
parent
695168fb73
commit
b55a906624
36
Dockerfile
36
Dockerfile
@ -1,63 +1,63 @@
|
|||||||
FROM alpine:3.11 AS builder
|
FROM alpine:3.11 AS builder
|
||||||
|
|
||||||
ENV NC_VERSION=18.0.2
|
ENV NC_VERSION=19.0.0
|
||||||
ENV NC_SHA256_SUM=d033660923dd27106ec64bff0e3afa2f595bd1b9661b7ea7882a1a33006ecb81
|
ENV NC_SHA256_SUM=d23d429657c5e3476d7e73af1eafc70e42a81cfe2ed65b20655a005724fe0aae
|
||||||
RUN wget https://download.nextcloud.com/server/releases/nextcloud-$NC_VERSION.tar.bz2
|
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 echo "$NC_SHA256_SUM nextcloud-$NC_VERSION.tar.bz2" | sha256sum -c - || exit 1
|
||||||
RUN mkdir -p /var/lib/nextcloud
|
RUN mkdir -p /var/lib/nextcloud
|
||||||
RUN tar xjf nextcloud-$NC_VERSION.tar.bz2 -C /var/lib/nextcloud --strip 1
|
RUN tar xjf nextcloud-$NC_VERSION.tar.bz2 -C /var/lib/nextcloud --strip 1
|
||||||
|
|
||||||
ENV TFA_VERSION=v4.1.2
|
ENV TFA_VERSION=v4.1.3
|
||||||
ENV TFA_SHA256_SUM=b66831ec4fc8cbb10e594b25ec12e90b99e0d41d3d1c1c29544bd9a81e73c470
|
ENV TFA_SHA256_SUM=91861cc1ca0557bf72ae976162b819cab944b14241a5417292ec30928d9bc9f6
|
||||||
RUN wget https://github.com/nextcloud/twofactor_totp/releases/download/$TFA_VERSION/twofactor_totp.tar.gz
|
RUN wget https://github.com/nextcloud/twofactor_totp/releases/download/$TFA_VERSION/twofactor_totp.tar.gz
|
||||||
RUN echo "$TFA_SHA256_SUM twofactor_totp.tar.gz" | sha256sum -c - || exit 1
|
RUN echo "$TFA_SHA256_SUM twofactor_totp.tar.gz" | sha256sum -c - || exit 1
|
||||||
RUN mkdir /var/lib/nextcloud/apps/twofactor_totp
|
RUN mkdir /var/lib/nextcloud/apps/twofactor_totp
|
||||||
RUN tar xzf twofactor_totp.tar.gz -C /var/lib/nextcloud/apps/twofactor_totp --strip 1
|
RUN tar xzf twofactor_totp.tar.gz -C /var/lib/nextcloud/apps/twofactor_totp --strip 1
|
||||||
|
|
||||||
ENV U2F_VERSION=v5.0.2
|
ENV U2F_VERSION=v5.1.0
|
||||||
ENV U2F_SHA256_SUM=064739e29140d8f7197bbc0cf46090218e84e97bc9c15b4a4716ae27d8d76bdc
|
ENV U2F_SHA256_SUM=21b74cad4424720772fcd607fa61255da172a0cd78ce974b027118da17d986f2
|
||||||
RUN wget https://github.com/nextcloud/twofactor_u2f/releases/download/$U2F_VERSION/twofactor_u2f.tar.gz
|
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 echo "$U2F_SHA256_SUM twofactor_u2f.tar.gz" | sha256sum -c - || exit 1
|
||||||
RUN mkdir /var/lib/nextcloud/apps/twofactor_u2f
|
RUN mkdir /var/lib/nextcloud/apps/twofactor_u2f
|
||||||
RUN tar xzf twofactor_u2f.tar.gz -C /var/lib/nextcloud/apps/twofactor_u2f --strip 1
|
RUN tar xzf twofactor_u2f.tar.gz -C /var/lib/nextcloud/apps/twofactor_u2f --strip 1
|
||||||
|
|
||||||
ENV POLLS_VERSION=v1.3.0
|
ENV POLLS_VERSION=v1.4.3
|
||||||
ENV POLLS_SHA256_SUM=5b6038251cef4f1ff0c8300c5b3961436be673734e87cb253c475e34f44fe5cb
|
ENV POLLS_SHA256_SUM=a472a381fcf6c67297f98944fcfe6018f97c252c6a7c5c8d43dc4cba7ae9851e
|
||||||
RUN wget https://github.com/nextcloud/polls/releases/download/$POLLS_VERSION/polls.tar.gz
|
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 echo "$POLLS_SHA256_SUM polls.tar.gz" | sha256sum -c - || exit 1
|
||||||
RUN mkdir /var/lib/nextcloud/apps/polls
|
RUN mkdir /var/lib/nextcloud/apps/polls
|
||||||
RUN tar xzf polls.tar.gz -C /var/lib/nextcloud/apps/polls --strip 1
|
RUN tar xzf polls.tar.gz -C /var/lib/nextcloud/apps/polls --strip 1
|
||||||
|
|
||||||
ENV CONTACTS_VERSION=v3.2.0
|
ENV CONTACTS_VERSION=v3.3.0
|
||||||
ENV CONTACTS_SHA256_SUM=ff982162430c7a0b1295dfc6df733d7967426342be0019140c8827e2a3183865
|
ENV CONTACTS_SHA256_SUM=a012aa42bd9772732efd4df005f795057bf71176b2912f47646792a727ddeaa0
|
||||||
RUN wget https://github.com/nextcloud/contacts/releases/download/$CONTACTS_VERSION/contacts.tar.gz
|
RUN wget https://github.com/nextcloud/contacts/releases/download/$CONTACTS_VERSION/contacts.tar.gz
|
||||||
RUN echo "$CONTACTS_SHA256_SUM contacts.tar.gz" | sha256sum -c - || exit 1
|
RUN echo "$CONTACTS_SHA256_SUM contacts.tar.gz" | sha256sum -c - || exit 1
|
||||||
RUN mkdir /var/lib/nextcloud/apps/contacts
|
RUN mkdir /var/lib/nextcloud/apps/contacts
|
||||||
RUN tar xzf contacts.tar.gz -C /var/lib/nextcloud/apps/contacts --strip 1
|
RUN tar xzf contacts.tar.gz -C /var/lib/nextcloud/apps/contacts --strip 1
|
||||||
|
|
||||||
ENV CALENDAR_VERSION=v2.0.2
|
ENV CALENDAR_VERSION=v2.0.3
|
||||||
ENV CALENDAR_SHA256_SUM=b2599d581ccd14452b2dce3ce3ca8d5ed431a8be552552419d01113e780c8c58
|
ENV CALENDAR_SHA256_SUM=89ae16c9d0aec79a0ee78516479a17506b624debcc4d4cf50c36dd538cd2f29e
|
||||||
RUN wget https://github.com/nextcloud/calendar/releases/download/$CALENDAR_VERSION/calendar.tar.gz
|
RUN wget https://github.com/nextcloud/calendar/releases/download/$CALENDAR_VERSION/calendar.tar.gz
|
||||||
RUN echo "$CALENDAR_SHA256_SUM calendar.tar.gz" | sha256sum -c - || exit 1
|
RUN echo "$CALENDAR_SHA256_SUM calendar.tar.gz" | sha256sum -c - || exit 1
|
||||||
RUN mkdir /var/lib/nextcloud/apps/calendar
|
RUN mkdir /var/lib/nextcloud/apps/calendar
|
||||||
RUN tar xzf calendar.tar.gz -C /var/lib/nextcloud/apps/calendar --strip 1
|
RUN tar xzf calendar.tar.gz -C /var/lib/nextcloud/apps/calendar --strip 1
|
||||||
|
|
||||||
ENV TASKS_VERSION=v0.12.1
|
ENV TASKS_VERSION=v0.13.1
|
||||||
ENV TASKS_SHA256_SUM=60ad47036aed704344e8b5eb5b94a5437839606505c1347b6ec14e746d468158
|
ENV TASKS_SHA256_SUM=043a528e360dbd3debdf4e00ef014fe1f47b0f989e3aba2fefc90ebcc1c11df3
|
||||||
RUN wget https://github.com/nextcloud/tasks/releases/download/$TASKS_VERSION/tasks.tar.gz
|
RUN wget https://github.com/nextcloud/tasks/releases/download/$TASKS_VERSION/tasks.tar.gz
|
||||||
RUN echo "$TASKS_SHA256_SUM tasks.tar.gz" | sha256sum -c - || exit 1
|
RUN echo "$TASKS_SHA256_SUM tasks.tar.gz" | sha256sum -c - || exit 1
|
||||||
RUN mkdir /var/lib/nextcloud/apps/tasks
|
RUN mkdir /var/lib/nextcloud/apps/tasks
|
||||||
RUN tar xzf tasks.tar.gz -C /var/lib/nextcloud/apps/tasks --strip 1
|
RUN tar xzf tasks.tar.gz -C /var/lib/nextcloud/apps/tasks --strip 1
|
||||||
|
|
||||||
ENV NOTES_VERSION=3.1.5
|
ENV NOTES_VERSION=3.4.0
|
||||||
ENV NOTES_SHA256_SUM=cf1d19c52847ab8941b7e6e76705e846fca20c66374b78527e6a4569263aee88
|
ENV NOTES_SHA256_SUM=70a61817932179114286764a3c5e6aa938737df571884f8c89837b2df9cdfc25
|
||||||
RUN wget https://github.com/nextcloud/notes/releases/download/$NOTES_VERSION/notes.tar.gz
|
RUN wget https://github.com/nextcloud/notes/releases/download/$NOTES_VERSION/notes.tar.gz
|
||||||
RUN echo "$NOTES_SHA256_SUM notes.tar.gz" | sha256sum -c - || exit 1
|
RUN echo "$NOTES_SHA256_SUM notes.tar.gz" | sha256sum -c - || exit 1
|
||||||
RUN mkdir /var/lib/nextcloud/apps/notes
|
RUN mkdir /var/lib/nextcloud/apps/notes
|
||||||
RUN tar xzf notes.tar.gz -C /var/lib/nextcloud/apps/notes --strip 1
|
RUN tar xzf notes.tar.gz -C /var/lib/nextcloud/apps/notes --strip 1
|
||||||
|
|
||||||
ENV NEWS_VERSION=14.1.3
|
ENV NEWS_VERSION=14.1.11
|
||||||
ENV NEWS_SHA256_SUM=882874518e21c310416d5239fc3e268612fbcc54210168bf99f53b630cc59eb1
|
ENV NEWS_SHA256_SUM=aa479be2dc942e2b286271f7cba6fbaec6ac261fa3b1964cf84edc0aec1fea0f
|
||||||
RUN wget https://github.com/nextcloud/news/releases/download/$NEWS_VERSION/news.tar.gz
|
RUN wget https://github.com/nextcloud/news/releases/download/$NEWS_VERSION/news.tar.gz
|
||||||
RUN echo "$NEWS_SHA256_SUM news.tar.gz" | sha256sum -c - || exit 1
|
RUN echo "$NEWS_SHA256_SUM news.tar.gz" | sha256sum -c - || exit 1
|
||||||
RUN mkdir /var/lib/nextcloud/apps/news
|
RUN mkdir /var/lib/nextcloud/apps/news
|
||||||
|
Loading…
Reference in New Issue
Block a user