Skip to content
Snippets Groups Projects
Unverified Commit 962ac77e authored by Laurent Modolo's avatar Laurent Modolo
Browse files

docker: add samtools v1.11

parent ebb5cb65
No related branches found
No related tags found
No related merge requests found
FROM alpine:3.8
MAINTAINER Laurent Modolo
ENV SAMTOOLS_VERSION=1.11
ENV PACKAGES git \
make \
gcc \
musl-dev \
zlib-dev \
ncurses-dev \
bzip2-dev \
xz-dev \
curl-dev \
bash
RUN apk update && \
apk add ${PACKAGES}
RUN git clone https://github.com/samtools/htslib.git && \
cd htslib && \
git checkout ${SAMTOOLS_VERSION} && \
cd .. && \
git clone https://github.com/samtools/samtools.git && \
cd samtools && \
git checkout ${SAMTOOLS_VERSION} && \
make && \
cp samtools /usr/bin/
#!/bin/sh
docker pull lbmc/samtools:1.11
docker build src/.docker_modules/samtools/1.11 -t 'lbmc/samtools:1.11'
docker push lbmc/samtools:1.11
version = "1.7"
version = "1.11"
container_url = "lbmc/samtools:${version}"
process filter_bam {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment