Skip to content
Snippets Groups Projects
Select Git revision
  • 3fede7c6484b01a35245b50437d2fbd268b1731a
  • master default protected
  • dev
  • 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
13 results

plot_profile.nf

  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    Dockerfile 437 B
    FROM ubuntu:18.04
    MAINTAINER Laurent Modolo
    
    ENV PACKAGES git=1:2.17* \
       build-essential=12.4* \
       ca-certificates=20180409 \
       zlib1g-dev=1:1.2.11*
    
    RUN apt-get update && \
        apt-get install -y --no-install-recommends ${PACKAGES} && \
        apt-get clean
    
    RUN git clone https://github.com/l-modolo/UrQt.git && \
      cd UrQt && \
      git checkout ${URQT_VERSION} && \
      make && \
      cd .. && \
      mv UrQt/UrQt /usr/bin/ && \
      rm -Rf UrQt