Skip to content
Snippets Groups Projects
Dockerfile 462 B
Newer Older
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}