fix: Remove youtube-dl as it currently breaks build
Some checks failed
Build / build (push) Has been cancelled

Once I figure out how to do to deal with it I'll add it back
This commit is contained in:
Jiří Štefka 2024-02-28 19:22:53 +01:00
parent eb9f2f5c8b
commit 813cbf46ff

@ -1,6 +1,7 @@
FROM nextcloud:28.0.2
LABEL maintainer="Jiří Štefka <jiri@stefka.eu>"
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/*