nf-core_modules/software/fastqc/Dockerfile

9 lines
272 B
Docker
Raw Normal View History

FROM nfcore/base:1.7
LABEL authors="phil.ewels@scilifelab.se" \
2020-07-11 11:42:13 +00:00
description="Docker image for nf-core modules fastqc"
2020-03-06 14:03:13 +00:00
# foobar
COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/nf-core-modules-fastqc/bin:$PATH