Skip to content
Snippets Groups Projects
Select Git revision
  • 231fd9e6a361a8095f07f32ce8c42b69f9409f8f
  • master default protected
  • dev
  • 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
15 results

Dockerfile

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    Dockerfile 460 B
    FROM ubuntu:18.04
    MAINTAINER Laurent Modolo
    
    ENV MACS_VERSION=2.1.1.20160309
    ENV PACKAGES git=1:2.17* \
       build-essential=12.4* \
       python-pip=9.0.1* \
       ca-certificates=20180409 \
       python-setuptools=39.0.1* \
       python-dev=2.7* \
       python-numpy=1:1.13* \
       python-wheel=0.30.0* \
       zlib1g-dev=1:1.2.11*
    
    RUN apt-get update && \
        apt-get install -y --no-install-recommends ${PACKAGES} && \
        apt-get clean
    
    RUN pip install MACS2==${MACS_VERSION}