From 5ad5735c91b07e4dbac8ce0b67c0549a62fa5c10 Mon Sep 17 00:00:00 2001
From: Laurent Modolo <laurent@modolo.fr>
Date: Tue, 5 Feb 2019 11:00:21 +0100
Subject: [PATCH] deepTools: Dockerfile fix deepTools (ubuntu -> debian)

---
 src/docker_modules/deepTools/3.0.2/Dockerfile | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/docker_modules/deepTools/3.0.2/Dockerfile b/src/docker_modules/deepTools/3.0.2/Dockerfile
index c358701f..adc17005 100644
--- a/src/docker_modules/deepTools/3.0.2/Dockerfile
+++ b/src/docker_modules/deepTools/3.0.2/Dockerfile
@@ -1,14 +1,14 @@
-FROM ubuntu:18.04
+FROM debian:stretch
 MAINTAINER Laurent Modolo
 
 ENV DEEPTOOLS_VERSION=3.0.2
-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* \
-             zlib1g-dev=1:1.2.11* \
-             libcurl4-gnutls-dev=7.58.0*
+ENV PACKAGES build-essential \
+             python3-pip \
+             python3-setuptools \
+             python3-dev \
+             python3-wheel \
+             zlib1g-dev \
+             libcurl4-gnutls-dev
 
 RUN apt-get update && \
     apt-get install -y --no-install-recommends ${PACKAGES} && \
-- 
GitLab