Skip to content

Commit

Permalink
Merge pull request #166 from andersen-lab/issue_165
Browse files Browse the repository at this point in the history
Update Dockerfile htslib version and ubuntu version
  • Loading branch information
cmaceves authored Jun 1, 2023
2 parents 2c43e0d + 1fdad39 commit 08aac33
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
@@ -1,18 +1,18 @@
FROM ubuntu:18.04
FROM ubuntu:20.04
MAINTAINER Karthik G <[email protected]>

RUN apt-get update
RUN apt-get install -y build-essential autoconf zlib1g-dev python3 wget libbz2-dev liblzma-dev libncurses-dev git bedtools python3-pip vim nano
# HTSlib
RUN cd root/ &&\
wget https://github.com/samtools/htslib/releases/download/1.9/htslib-1.9.tar.bz2 &&\
tar xvf htslib-1.9.tar.bz2 &&\
cd htslib-1.9/ &&\
wget https://github.com/samtools/htslib/releases/download/1.10.2/htslib-1.10.2.tar.bz2 &&\
tar xvf htslib-1.10.2.tar.bz2 &&\
cd htslib-1.10.2/ &&\
./configure &&\
make &&\
make install &&\
cd ../ &&\
rm htslib-1.9.tar.bz2
rm htslib-1.10.2.tar.bz2
ENV LD_LIBRARY_PATH /usr/local/lib:$LD_LIBRARY_PATH
# SAMtools
RUN cd root &&\
Expand Down

0 comments on commit 08aac33

Please sign in to comment.