2024-02-28 19:01:24 +01:00
|
|
|
FROM nextcloud:28.0.2
|
2023-09-19 19:12:24 +02:00
|
|
|
LABEL maintainer="Jiří Štefka <jiri@stefka.eu>"
|
|
|
|
|
2024-02-28 19:22:53 +01:00
|
|
|
# RUN apt update && apt upgrade -y --no-install-recommends && apt install ffmpeg aria2 youtube-dl libmagickcore-dev -y --no-install-recommends
|
2024-03-01 10:59:44 +01:00
|
|
|
RUN apt update && apt upgrade -y --no-install-recommends && apt install gnupg2 ffmpeg aria2 libmagickcore-dev -y --no-install-recommends
|
2024-01-18 15:01:25 +01:00
|
|
|
RUN docker-php-ext-install bz2
|
2023-09-19 19:12:24 +02:00
|
|
|
RUN apt clean && rm -rf /var/lib/apt/lists/*
|