nf-core_modules/software/bwa/mem/Dockerfile

8 lines
278 B
Text
Raw Normal View History

2020-03-05 11:06:25 -05:00
FROM nfcore/base
LABEL authors="Jeremy Guntoro" \
2020-07-11 07:42:13 -04:00
description="Docker image containing all requirements for nf-core/modules/bwa/mem module"
2020-03-05 11:06:25 -05:00
COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/nf-core-bwa-mem/bin:$PATH