🌐 AI搜索 & 代理 主页
Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Updated dependecies for the next release
  • Loading branch information
asenyaev committed May 31, 2022
commit 4f8289d4627a42621303d9fce6f46b630950186e
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