-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
24 lines (20 loc) · 962 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
################## BASE IMAGE ######################
FROM nfcore/base
################## METADATA ######################
LABEL base_image="nfcore/base"
LABEL version="1.0"
LABEL software="facets-nf"
LABEL software.version="2.0"
LABEL about.summary="Container image containing all requirements for **facets-nf pipeline**"
LABEL about.home="http://github.com/IARCbioinfo/facets-nf"
LABEL about.documentation="http://github.com/IARCbioinfo/facets-nf/README.md"
LABEL about.license_file="http://github.com/IARCbioinfo/facets-nf/LICENSE.txt"
LABEL about.license="GNU-3.0"
################## MAINTAINER ######################
MAINTAINER **voegelec** <**[email protected]**>
################## INSTALLATION ######################
COPY environment.yml /
RUN conda env update -n facets-nf -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/facets-nf/bin:$PATH
RUN ls /opt/conda/envs/facets-nf/bin
RUN conda env export --name facets-nf > facets-nf-v2.0.yml