Skip to content
Snippets Groups Projects
Select Git revision
  • 86ff02d6c1238e4599a2ad43e7c62b17e4900e9d
  • master default protected
  • tp_experimental_biologists
3 results

Dockerfile

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    Dockerfile 558 B
    FROM alpine:3.8
    MAINTAINER Laurent Modolo
    
    ENV SAMTOOLS_VERSION=1.7
    ENV PACKAGES git \
                 make \
                 gcc \
                 musl-dev \
                 zlib-dev \
                 ncurses-dev \
                 bzip2-dev \
                 xz-dev
    
    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/