From 7d6b9c5ab59005298bbe649e68ec2876579c229b Mon Sep 17 00:00:00 2001 From: STAM Date: Mon, 2 Sep 2019 13:59:09 +0300 Subject: [PATCH] Update Dockerfile --- nextcloud/latest/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nextcloud/latest/Dockerfile b/nextcloud/latest/Dockerfile index 01202cdc5..0f95a4ac7 100644 --- a/nextcloud/latest/Dockerfile +++ b/nextcloud/latest/Dockerfile @@ -1,6 +1,16 @@ FROM nextcloud:latest ENV DEBIAN_FRONTEND noninteractive + +#editing sources list +RUN rm /etc/apt/sources.list +COPY sources.list /etc/apt/sources.list + +#addoing some utils RUN apt update -y && apt dist-upgrade -y && apt install -y --allow-unauthenticated ca-certificates gnupg sudo apt-transport-https lsb-release apt-utils locales console-cyrillic wget curl htop mc tmux iftop cmatrix iputils-ping cmatrix-xfont lsof lynx fontconfig smbclient nano libsmbclient + +#thank u, mac users. rolling back normal ZipStreammer RUN rm -fv /var/www/html/lib/private/Streamer.php ADD Streamer.php /var/www/html/lib/private/ + +#temp debug RUN cat /var/www/html/lib/private/Streamer.php