nf-core_modules/software/bwa/mem/Dockerfile

8 lines
278 B
Docker
Raw Normal View History

2020-03-05 16:06:25 +00:00
FROM nfcore/base
LABEL authors="Jeremy Guntoro" \
2020-07-11 11:42:13 +00:00
description="Docker image containing all requirements for nf-core/modules/bwa/mem module"
2020-03-05 16:06:25 +00: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