nf-core_modules/software/umi_tools/Dockerfile

9 lines
324 B
Docker
Raw Normal View History

FROM nfcore/base:1.7
LABEL authors="chris.cheshire@crick.ac.uk" \
2020-07-11 11:42:13 +00:00
description="Docker image containing all requirements for the nf-core umi_tools module"
# Install conda packages
COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a
2020-07-11 11:42:13 +00:00
ENV PATH /opt/conda/envs/nfcore-module-umitools/bin:$PATH