Skip to content

Commit

Permalink
Updated dependecies for the next release
Browse files Browse the repository at this point in the history
  • Loading branch information
asenyaev committed May 31, 2022
1 parent d87183f commit ac615ea
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docker/manylinux2014/Dockerfile_aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ RUN mkdir ~/libvpx_sources && \
cd libvpx && \
./configure --prefix="$HOME/ffmpeg_build" --disable-examples --disable-unit-tests --enable-vp9-highbitdepth --as=yasm --enable-pic --enable-shared && \
make -j$(getconf _NPROCESSORS_ONLN) && \
make install
make install && \
cd .. && \
rm -rf ~/libvpx_sources

RUN mkdir ~/ffmpeg_sources && \
cd ~/ffmpeg_sources && \
Expand All @@ -114,7 +116,9 @@ RUN curl -O -L https://github.com/ccache/ccache/releases/download/v${CCACHE_VERS
cd ccache-${CCACHE_VERSION} && \
linux32 ./configure && \
make -j$(getconf _NPROCESSORS_ONLN) && \
make install
make install && \
cd .. && \
rm -rf ccache-${CCACHE_VERSION}.tar.gz

# Git security vulnerability: https://github.blog/2022-04-12-git-security-vulnerability-announced
RUN mkdir /io && \
Expand Down

0 comments on commit ac615ea

Please sign in to comment.