Skip to content
Snippets Groups Projects
Select Git revision
  • a2f9dcc6e1c5b64e3e83ad7d6661aed219e78bf9
  • master default protected
  • dev
  • v0.2.7
  • v0.2.6
  • v0.1.0
  • v0.2.5
  • v0.2.4
  • v0.2.3
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
13 results

Dockerfile

Blame
  • Forked from LBMC / nextflow
    1020 commits behind the upstream repository.
    Dockerfile 220 B
    FROM ubuntu:18.04
    MAINTAINER Laurent Modolo
    
    ENV BCFTOOLS_VERSION=1.7
    ENV PACKAGES bcftools=${BCFTOOLS_VERSION}*
    
    RUN apt-get update && \
        apt-get install -y --no-install-recommends ${PACKAGES} && \
        apt-get clean