add ffmpeg to Dockerfile

This commit is contained in:
ar2rworld
2023-09-01 16:27:39 -04:00
parent e29655f2bd
commit 89ddc38573

View File

@ -12,7 +12,8 @@ RUN \
apt-get update -q && \
apt-get install -y -q python-is-python3 && \
curl -L https://github.com/yt-dlp/yt-dlp/releases/download/$YT_DLP/yt-dlp -o /usr/local/bin/yt-dlp && \
chmod a+x /usr/local/bin/yt-dlp
chmod a+x /usr/local/bin/yt-dlp \
apt-get install ffmpeg && ffmpeg -version
FROM base AS dev