luslab-umitools | Simplified docker file

This commit is contained in:
Chris Cheshire 2020-06-26 08:17:45 +01:00
parent 0f5da3bd99
commit 723279c25e

View file

@ -2,13 +2,6 @@ FROM nfcore/base:1.7
LABEL authors="chris.cheshire@crick.ac.uk" \
description="Docker image containing all requirements for the nf-core umi_tools module"
# Install apt packages
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
procps=2:3.3.15-2 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Install conda packages
COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a