mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-10 07:41:11 -05:00
8 lines
265 B
Text
8 lines
265 B
Text
|
FROM nfcore/base:1.7
|
||
|
LABEL authors="phil.ewels@scilifelab.se" \
|
||
|
description="Docker image for nf-core modules fastqc"
|
||
|
|
||
|
COPY environment.yml /
|
||
|
RUN conda env create -f /environment.yml && conda clean -a
|
||
|
ENV PATH /opt/conda/envs/nf-core-modules-fastqc/bin:$PATH
|