Skip to content
Snippets Groups Projects
Select Git revision
  • de40f72f17b4dd5c9cdb9eb06cf2ea1971f66a39
  • master default protected
  • dev
  • v2.0.0
  • 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
18 results

Dockerfile

Blame
  • Dockerfile 464 B
    
    FROM ubuntu:18.04
    MAINTAINER Laurent Modolo
    
    ENV HTSEQ_VERSION=0.11.2
    ENV PACKAGES build-essential=12.4* \
                 python3-pip=9.0.1* \
                 python3-setuptools=39.0.1* \
                 python3-dev=3.6.7* \
                 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}