File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,23 @@ RUN cd ~/ffmpeg_sources && \
61
61
ldconfig && \
62
62
rm -rf ~/ffmpeg_sources
63
63
64
+ RUN curl -O -L https://github.com/ccache/ccache/releases/download/v3.7.9/ccache-3.7.9.tar.gz && \
65
+ tar -xf ccache-3.7.9.tar.gz && \
66
+ cd ccache-3.7.9 && \
67
+ linux32 ./configure && \
68
+ make -j$(getconf _NPROCESSORS_ONLN) && \
69
+ make install
70
+
71
+ RUN curl -O -L https://github.com/Kitware/CMake/releases/download/v3.17.0/cmake-3.17.0.tar.gz && \
72
+ tar -xf cmake-3.17.0.tar.gz && \
73
+ cd cmake-3.17.0 && \
74
+ export MAKEFLAGS=-j$(getconf _NPROCESSORS_ONLN) && \
75
+ ./configure --system-curl && \
76
+ make && \
77
+ make install && \
78
+ cd .. && \
79
+ rm -rf cmake-3.17.0*
80
+
64
81
ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/root/ffmpeg_build/lib/pkgconfig
65
82
ENV LDFLAGS -L/root/ffmpeg_build/lib
66
83
ENV PATH "$HOME/bin:$PATH"
You can’t perform that action at this time.
0 commit comments