Skip to content

Commit

Permalink
[ci skip] fix issue with sambamba repo checkout in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
emi80 committed Feb 15, 2021
1 parent 2b2a422 commit 81e0628
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions docker/tool/sambamba/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ RUN apk --no-cache add -X http://dl-cdn.alpinelinux.org/alpine/edge/main \

ARG REVISION=v0.7.1

RUN git clone --recursive https://github.com/biod/sambamba.git && \
cd sambamba && git checkout $REVISION && \
make static
RUN git clone --recursive https://github.com/biod/sambamba.git --branch $REVISION \
&& cd sambamba && make static

FROM grapenf/base

Expand Down
5 changes: 2 additions & 3 deletions docker/tool/sambamba/Dockerfile.compile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ ENV \

ARG REVISION=v0.7.1

RUN git clone --recursive https://github.com/biod/sambamba.git && \
cd sambamba && git checkout $REVISION && \
make
RUN git clone --recursive https://github.com/biod/sambamba.git --branch $REVISION \
&& cd sambamba && make

FROM grapenf/base

Expand Down

0 comments on commit 81e0628

Please sign in to comment.