nf-core_modules/software/bwa/mem/Dockerfile
2020-07-11 14:27:21 +02:00

7 lines
278 B
Docker

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