mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
9 lines
278 B
Docker
9 lines
278 B
Docker
|
FROM nfcore/base:1.7
|
||
|
LABEL authors="phil.ewels@scilifelab.se" \
|
||
|
description="Docker image for nf-core modules samtools"
|
||
|
|
||
|
# foobar
|
||
|
COPY environment.yml /
|
||
|
RUN conda env create -f /environment.yml && conda clean -a
|
||
|
ENV PATH /opt/conda/envs/nf-core-modules-samtools/bin:$PATH
|