docker-nextcloud-extended/Dockerfile
jiriks74 ec5d88f295
Some checks failed
Build / build (push) Has been cancelled
fix(bz2-php): Missing PHP bz2 module in upstream image
fixes `This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them: bz2`
2024-01-18 15:01:25 +01:00

7 lines
302 B
Docker

FROM nextcloud:28.0.1
LABEL maintainer="Jiří Štefka <jiri@stefka.eu>"
RUN apt update && apt upgrade -y --no-install-recommends && apt install ffmpeg aria2 youtube-dl libmagickcore-dev libbz2-dev -y --no-install-recommends
RUN docker-php-ext-install bz2
RUN apt clean && rm -rf /var/lib/apt/lists/*