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

Dockerfile

Blame
  • Laurent Modolo's avatar
    4fa9a1b1
    History
    Dockerfile 220 B
    FROM ubuntu:18.04
    MAINTAINER Laurent Modolo
    
    ENV SAMTOOLS_VERSION=1.7
    ENV PACKAGES samtools=${SAMTOOLS_VERSION}*
    
    RUN apt-get update && \
        apt-get install -y --no-install-recommends ${PACKAGES} && \
        apt-get clean