From 813cbf46ff69c20f5e44448f1c2f701fb96f6caa Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Wed, 28 Feb 2024 19:22:53 +0100 Subject: [PATCH] fix: Remove youtube-dl as it currently breaks build Once I figure out how to do to deal with it I'll add it back --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8ec887d..319ae58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM nextcloud:28.0.2 LABEL maintainer="Jiří Štefka " -RUN apt update && apt upgrade -y --no-install-recommends && apt install ffmpeg aria2 youtube-dl libmagickcore-dev -y --no-install-recommends +# RUN apt update && apt upgrade -y --no-install-recommends && apt install ffmpeg aria2 youtube-dl libmagickcore-dev -y --no-install-recommends +RUN apt update && apt upgrade -y --no-install-recommends && apt install ffmpeg aria2 libmagickcore-dev -y --no-install-recommends RUN docker-php-ext-install bz2 RUN apt clean && rm -rf /var/lib/apt/lists/*