Skip to content
Snippets Groups Projects
Select Git revision
  • bdceaf98bf9b07b43e6ff3f1faeb000f5e607f2d
  • master default protected
  • tp_experimental_biologists
3 results

Dockerfile

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    Dockerfile 217 B
    FROM ubuntu:18.04
    MAINTAINER Laurent Modolo
    
    ENV FASTQC_VERSION=0.11.5
    ENV PACKAGES fastqc=${FASTQC_VERSION}*
    
    RUN apt-get update && \
        apt-get install -y --no-install-recommends ${PACKAGES} && \
        apt-get clean