mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-09 15:21:13 -05:00
10 lines
282 B
Text
10 lines
282 B
Text
|
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
|
||
|
|
||
|
|