docker-nextcloud-extended/Dockerfile
jiriks74 813cbf46ff
Some checks failed
Build / build (push) Has been cancelled
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
2024-02-28 19:22:53 +01:00

8 lines
423 B
Docker

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 libmagickcore-dev -y --no-install-recommends
RUN docker-php-ext-install bz2
RUN apt clean && rm -rf /var/lib/apt/lists/*