Skip to content
Snippets Groups Projects
Select Git revision
  • 231fd9e6a361a8095f07f32ce8c42b69f9409f8f
  • master default protected
  • dev
  • v0.4.0
  • v0.3.0
  • v0.2.9
  • v0.2.8
  • 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
17 results

Dockerfile

Blame
  • Forked from LBMC / nextflow
    940 commits behind the upstream repository.
    Laurent Modolo's avatar
    231fd9e6
    History
    Dockerfile 463 B
    
    FROM ubuntu:18.04
    MAINTAINER Laurent Modolo
    
    ENV HTSEQ_VERSION=0.8.0
    ENV PACKAGES build-essential=12.4* \
                 python3-pip=9.0.1* \
                 python3-setuptools=39.0.1* \
                 python3-dev=3.6.5* \
                 python3-wheel=0.30.0*
    
    RUN apt-get update && \
        apt-get install -y --no-install-recommends ${PACKAGES} && \
        apt-get clean
    
    RUN pip3 install numpy==1.14.3
    RUN pip3 install pysam==0.15.0
    RUN pip3 install HTSeq==${HTSEQ_VERSION}