Skip to content
Snippets Groups Projects
Select Git revision
  • ceca3ce0513a67370ce258f6b1d2f827cc04329b
  • 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 585 B
    # SPDX-FileCopyrightText: 2022 Laurent Modolo <laurent.modolo@ens-lyon.fr>
    #
    # SPDX-License-Identifier: AGPL-3.0-or-later
    
    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}