Official docker image: upgraded ffmpeg + do not build it with the small option

This commit is contained in:
emeric
2025-11-09 13:51:05 +01:00
parent 5dfcb66ef2
commit 6dc386cfd7
+1 -2
View File
@@ -39,7 +39,7 @@ ARG BUILD_PACKAGES=" \
RUN apk add --no-cache --update ${BUILD_PACKAGES} RUN apk add --no-cache --update ${BUILD_PACKAGES}
# ffmpeg # ffmpeg
ARG FFMPEG_VERSION=6.1.2 ARG FFMPEG_VERSION=6.1.3
RUN \ RUN \
DIR=/tmp/ffmpeg && mkdir -p ${DIR} && cd ${DIR} && \ DIR=/tmp/ffmpeg && mkdir -p ${DIR} && cd ${DIR} && \
curl -sLO https://ffmpeg.org/releases/ffmpeg-${FFMPEG_VERSION}.tar.bz2 && \ curl -sLO https://ffmpeg.org/releases/ffmpeg-${FFMPEG_VERSION}.tar.bz2 && \
@@ -61,7 +61,6 @@ RUN \
--enable-shared \ --enable-shared \
--disable-static \ --disable-static \
--enable-gpl \ --enable-gpl \
--enable-small \
--enable-version3 \ --enable-version3 \
--enable-nonfree \ --enable-nonfree \
--enable-libmp3lame \ --enable-libmp3lame \