Skip to content

Commit

Permalink
[skip ci] Optimize arm64 Dockerfile (#589)
Browse files Browse the repository at this point in the history
Signed-off-by: Cai Yudong <[email protected]>
  • Loading branch information
cydrain authored May 23, 2024
1 parent c9f47a2 commit ca199d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/docker/builder/cpu/ubuntu22.04/arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ RUN wget https://github.com/Kitware/CMake/archive/refs/tags/v3.28.5.tar.gz \
&& cd CMake-3.28.5 \
&& mkdir build && cd build \
&& ../bootstrap \
&& make -j && make install \
&& make -j3 && make install \
&& cd .. && rm -rf CMake-3.28.5 && rm v3.28.5.tar.gz \
&& wget https://github.com/ccache/ccache/archive/refs/tags/v4.9.1.tar.gz \
&& tar xvfz v4.9.1.tar.gz \
&& cd ccache-4.9.1 \
&& mkdir build && cd build \
&& cmake -D CMAKE_BUILD_TYPE=Release .. \
&& make -j && make install \
&& make -j3 && make install \
&& cd .. && rm -rf ccache-4.9.1 && rm v4.9.1.tar.gz

# install knowhere dependancies
Expand Down

0 comments on commit ca199d0

Please sign in to comment.