docker-nextcloud-extended/Dockerfile
jiriks74 f3ac33ae5f
Some checks failed
Build / build-stable (push) Failing after 10m12s
Build / build-latest (push) Successful in 14m48s
fix(ci/cd): Stable imagage used latest as a base
2024-04-29 03:05:57 +02:00

7 lines
292 B
Docker

ARG NEXTCLOUD_VERSION
FROM nextcloud:${NEXTCLOUD_VERSION}
LABEL maintainer="Jiří Štefka <jiri@stefka.eu>"
RUN apt update && apt upgrade -y --no-install-recommends && apt install gnupg2 ffmpeg aria2 libmagickcore-dev -y --no-install-recommends
RUN apt clean && rm -rf /var/lib/apt/lists/*