We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88e6ac7 commit ae973eaCopy full SHA for ae973ea
Dockerfile.linux
@@ -21,6 +21,12 @@ RUN tar -xf cmake-3.26.5-linux-x86_64.tar.gz
21
RUN mv cmake-3.26.5-linux-x86_64 opt
22
ENV CMAKE_ROOT=/ffmpeg-static/opt/share/cmake-3.27
23
24
+# Install a recent version of pkg-config
25
+RUN wget https://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz && \
26
+ tar -xf pkg-config-0.28.tar.gz && \
27
+ cd pkg-config-0.28 && \
28
+ ./configure --with-internal-glib --prefix=/ffmpeg-static/opt && make && make install
29
+
30
# Install a recent version of yasm
31
RUN git clone https://github.com/yasm/yasm.git && \
32
cd yasm \
0 commit comments