Skip to content

Commit 4f8289d

Browse files
committed
Updated dependecies for the next release
1 parent 3ac27ad commit 4f8289d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docker/manylinux2014/Dockerfile_aarch64

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

98100
RUN 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
120124
RUN mkdir /io && \

0 commit comments

Comments
 (0)