mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
8 lines
304 B
Docker
8 lines
304 B
Docker
|
FROM nfcore/base
|
||
|
LABEL authors="Jose Espinosa-Carrasco" \
|
||
|
description="Docker image containing all requirements for nf-core/modules/bedtools/intersect"
|
||
|
|
||
|
COPY environment.yml /
|
||
|
RUN conda env create -f /environment.yml && conda clean -a
|
||
|
ENV PATH /opt/conda/envs/nf-core-bedtools-intersectbed/bin:$PATH
|