Select Git revision
Forked from
LBMC / nextflow
940 commits behind the upstream repository.
Laurent Modolo authored
Dockerfile 462 B
FROM debian:stretch
MAINTAINER Laurent Modolo
ENV DEEPTOOLS_VERSION=3.1.1
ENV PACKAGES build-essential \
python3-pip \
python3-setuptools \
python3-dev \
python3-wheel \
zlib1g-dev \
libcurl4-gnutls-dev \
procps
RUN apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
RUN pip3 install deeptools==${DEEPTOOLS_VERSION}