Do not limit parallelism of make when building HMMER

PiperOrigin-RevId: 759516856
Change-Id: I1c926a30edf87f0d3e6feccb42e474ff96c06d6d
This commit is contained in:
Augustin Zidek
2025-05-16 02:06:30 -07:00
committed by Copybara-Service
parent 0cda346e40
commit 2d466dc791

View File

@ -38,7 +38,7 @@ RUN mkdir /hmmer_build /hmmer ; \
wget http://eddylab.org/software/hmmer/hmmer-3.4.tar.gz --directory-prefix /hmmer_build ; \
(cd /hmmer_build && tar zxf hmmer-3.4.tar.gz && rm hmmer-3.4.tar.gz) ; \
(cd /hmmer_build/hmmer-3.4 && ./configure --prefix /hmmer) ; \
(cd /hmmer_build/hmmer-3.4 && make -j8) ; \
(cd /hmmer_build/hmmer-3.4 && make -j) ; \
(cd /hmmer_build/hmmer-3.4 && make install) ; \
(cd /hmmer_build/hmmer-3.4/easel && make install) ; \
rm -R /hmmer_build