add the app into the container and upgrade to 23

Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
szaimen 2021-11-30 12:50:08 +01:00
parent 9f82cd3133
commit aadf624257
3 changed files with 16 additions and 2 deletions

View file

@ -109,7 +109,7 @@ RUN { \
VOLUME /var/www/html
ENV NEXTCLOUD_VERSION 22.2.3
ENV NEXTCLOUD_VERSION 23.0.0
RUN set -ex; \
fetchDeps=" \
@ -216,6 +216,13 @@ RUN set -ex; \
; \
rm -rf /var/lib/apt/lists/*
RUN rm -rf /tmp/nextcloud-aio && \
mkdir -p /tmp/nextcloud-aio && \
cd /tmp/nextcloud-aio && \
git clone https://github.com/nextcloud/all-in-one.git .; \
mkdir -p /usr/src/nextcloud/apps/nextcloud-aio; \
cp -r ./app/* /usr/src/nextcloud/apps/nextcloud-aio/
RUN chown www-data:root -R /usr/src && \
chown www-data:root -R /usr/local/etc/php/conf.d && \
chown www-data:root -R /var/log/supervisord/ && \