File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 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 && \
6161 ldconfig && \
6262 rm -rf ~/ffmpeg_sources
6363
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+
6481ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/root/ffmpeg_build/lib/pkgconfig
6582ENV LDFLAGS -L/root/ffmpeg_build/lib
6683ENV PATH "$HOME/bin:$PATH"
You can’t perform that action at this time.
0 commit comments