File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ FROM python:3.13-alpine as base
33FROM base as builder
44RUN mkdir /ffmpeg
55WORKDIR /ffmpeg
6- RUN wget https://johnvansickle .com/ffmpeg/ releases/ffmpeg-release-amd64-static .tar.xz
7- RUN tar -xf ffmpeg-release-amd64-static .tar.xz -C /ffmpeg --strip-components=1
6+ RUN wget https://github .com/BtbN/FFmpeg-Builds/ releases/download/latest/ ffmpeg-master-latest-linux64-gpl .tar.xz
7+ RUN tar -xf ffmpeg-master-latest-linux64-gpl .tar.xz -C /ffmpeg --strip-components=1
88
99FROM base
10- COPY --from=builder /ffmpeg/ffmpeg /usr/local/bin
11- COPY --from=builder /ffmpeg/ffprobe /usr/local/bin
10+ COPY --from=builder /ffmpeg/bin/ ffmpeg /usr/local/bin
11+ COPY --from=builder /ffmpeg/bin/ ffprobe /usr/local/bin
1212RUN pip3 install ffmpeg-normalize
1313RUN chmod +x /usr/local/bin/ffmpeg /usr/local/bin/ffprobe
1414
You can’t perform that action at this time.
0 commit comments