Use Dockerfile for nextcloud to install ffmpeg for Momories nextcloud app

This commit is contained in:
compute
2025-01-04 13:43:51 +00:00
parent fb73b1a96e
commit aa7ee059f8
2 changed files with 13 additions and 2 deletions

7
nextcloud/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM nextcloud:28
RUN set -ex; \
\
apt-get update; \
apt-get install -y --no-install-recommends \
ffmpeg \