From 73a8609550ca8194ac3ceb6b9b8ce47e69185cdc Mon Sep 17 00:00:00 2001 From: Niema Moshiri Date: Thu, 28 Nov 2024 07:19:10 -0800 Subject: [PATCH] Updated Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f7b4933..6a795d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ MAINTAINER Niema Moshiri # install ViralConsensus RUN apk update && \ apk add autoconf automake bash bzip2-dev curl-dev g++ git make xz-dev zlib-dev && \ - wget -qO- "https://github.com/samtools/htslib/releases/download/1.18/htslib-1.18.tar.bz2" | tar -xj && \ + wget -qO- "https://github.com/samtools/htslib/releases/download/1.21/htslib-1.21.tar.bz2" | tar -xj && \ cd htslib-* && autoreconf -i && ./configure && make && make install && cd .. && rm -rf htslib-* && \ git clone https://github.com/niemasd/ViralConsensus.git && \ cd ViralConsensus* && \