File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,9 @@ RUN mkdir ~/libvpx_sources && \
9393 cd libvpx && \
9494 ./configure --prefix="$HOME/ffmpeg_build" --disable-examples --disable-unit-tests --enable-vp9-highbitdepth --as=yasm --enable-pic --enable-shared && \
9595 make -j$(getconf _NPROCESSORS_ONLN) && \
96- make install
96+ make install && \
97+ cd .. && \
98+ rm -rf ~/libvpx_sources
9799
98100RUN mkdir ~/ffmpeg_sources && \
99101 cd ~/ffmpeg_sources && \
@@ -114,7 +116,9 @@ RUN curl -O -L https://github.com/ccache/ccache/releases/download/v${CCACHE_VERS
114116 cd ccache-${CCACHE_VERSION} && \
115117 linux32 ./configure && \
116118 make -j$(getconf _NPROCESSORS_ONLN) && \
117- make install
119+ make install && \
120+ cd .. && \
121+ rm -rf ccache-${CCACHE_VERSION}.tar.gz
118122
119123# Git security vulnerability: https://github.blog/2022-04-12-git-security-vulnerability-announced
120124RUN mkdir /io && \
You can’t perform that action at this time.
0 commit comments