Skip to content

Commit

Permalink
fix nextcloud dockerfile a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
lilioid committed Oct 7, 2024
1 parent 6d5d8ff commit f079ba6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nextcloud/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ ARG GID=3001
RUN groupmod -g $GID www-data
RUN usermod -u $UID -g $GID -d /var/www/ www-data

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update; \
apt-get -y --no-install-recommends install \
vim \
Expand Down Expand Up @@ -40,7 +41,7 @@ RUN apt-get update; \

# disable nextcloud message about unsupported notifications (because we have more than 5000 users)
ADD disable_notification_message.patch /tmp/disable_notification_message.patch
RUN patch -p1 -d /var/www/nextcloud < /tmp/disable_notification_message.patch
RUN patch --no-backup-if-mismatch -p1 -d /var/www/nextcloud < /tmp/disable_notification_message.patch

# install richdocuments
ARG RICHDOCUMENTS_VERSION=v8.5.1
Expand Down

0 comments on commit f079ba6

Please sign in to comment.