File tree 1 file changed +6
-2
lines changed
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 && \
93
93
cd libvpx && \
94
94
./configure --prefix="$HOME/ffmpeg_build" --disable-examples --disable-unit-tests --enable-vp9-highbitdepth --as=yasm --enable-pic --enable-shared && \
95
95
make -j$(getconf _NPROCESSORS_ONLN) && \
96
- make install
96
+ make install && \
97
+ cd .. && \
98
+ rm -rf ~/libvpx_sources
97
99
98
100
RUN mkdir ~/ffmpeg_sources && \
99
101
cd ~/ffmpeg_sources && \
@@ -114,7 +116,9 @@ RUN curl -O -L https://github.com/ccache/ccache/releases/download/v${CCACHE_VERS
114
116
cd ccache-${CCACHE_VERSION} && \
115
117
linux32 ./configure && \
116
118
make -j$(getconf _NPROCESSORS_ONLN) && \
117
- make install
119
+ make install && \
120
+ cd .. && \
121
+ rm -rf ccache-${CCACHE_VERSION}.tar.gz
118
122
119
123
# Git security vulnerability: https://github.blog/2022-04-12-git-security-vulnerability-announced
120
124
RUN mkdir /io && \
You can’t perform that action at this time.
0 commit comments