Remove -lm
Some checks failed
Publish Docker image / Push Docker image to the registry (push) Failing after 10m40s

This commit is contained in:
Anton Liaposhchenko 2024-05-24 20:16:29 +03:00
parent 5c10d108dd
commit 56f288c19a

View File

@ -19,7 +19,7 @@ WORKDIR /opt/ffmpeg-sources
RUN wget https://ffmpeg.org/releases/ffmpeg-6.1.tar.xz && tar -xJvf ffmpeg-6.1.tar.xz
WORKDIR /opt/ffmpeg-sources/ffmpeg-6.1
RUN ./configure --pkg-config-flags="--static" --extra-libs="-lpthread -lm" --ld="g++" \
RUN ./configure --pkg-config-flags="--static" --extra-libs="-lpthread" --ld="g++" \
--prefix="/opt/ffmpeg-build" --enable-shared --disable-static \
--disable-doc --disable-network \
--disable-zlib --disable-lzma --disable-bzlib --disable-bsfs --disable-v4l2-m2m