Skip to content

Commit

Permalink
try not removing the entire folder in wfmash Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
davidebolo1993 committed Oct 17, 2024
1 parent ba0769c commit 169b156
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ RUN wget https://github.com/ChristopherWilks/megadepth/releases/download/1.2.0/m
##install wfmash
RUN wget https://github.com/waveygang/wfmash/releases/download/v0.14.0/wfmash-v0.14.0.tar.gz \
&& tar -xvzf wfmash-v0.14.0.tar.gz \
&& rm wfmash-v0.14.0.tar.gz \
&& cd wfmash-v0.14.0 \
&& cmake -H. -Bbuild -DBUILD_STATIC=ON \
&& cmake -H. -Bbuild \
&& cmake --build build -- -j 8 \
&& cp build/bin/wfmash ../wfmash \
&& cd .. \
&& chmod +x wfmash \
&& rm -rf wfmash-v0.14.0*
&& cd ..

ENV PATH /opt/wfmash-v0.14.0/build/bin:$PATH

##install gafpack
RUN git clone https://github.com/ekg/gafpack.git \
Expand Down

0 comments on commit 169b156

Please sign in to comment.