Installing ffmpeg in dockerfile

This commit is contained in:
Leonardo Segala 2025-08-01 21:20:57 +02:00
parent 25a6b4e82c
commit 3a81b332ba

View file

@ -2,7 +2,7 @@ FROM python:3.13.5-alpine
WORKDIR /app WORKDIR /app
RUN apk update && apk add git RUN apk update && apk add git ffmpeg
RUN git clone --depth 1 'https://github.com/yt-dlp/yt-dlp.git' /yt-dlp RUN git clone --depth 1 'https://github.com/yt-dlp/yt-dlp.git' /yt-dlp