-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
executable file
·27 lines (21 loc) · 1.22 KB
/
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
25
26
27
################## BASE IMAGE #####################
FROM continuumio/miniconda3:4.7.12
################## METADATA #######################
LABEL base_image="continuumio/miniconda3"
LABEL version="4.7.12"
LABEL software="NGSCheckMate-nf"
LABEL software.version="1.1"
LABEL about.summary="Container image containing all requirements for NGSCheckMate-nf"
LABEL about.home="http://github.com/IARCbioinfo/NGSCheckMate-nf"
LABEL about.documentation="http://github.com/IARCbioinfo/NGSCheckMate-nf/README.md"
LABEL about.license_file="http://github.com/IARCbioinfo/NGSCheckMate-nf/LICENSE.txt"
LABEL about.license="GNU-3.0"
################## MAINTAINER ######################
MAINTAINER **nalcala** <**alcalan@iarc.fr**>
################## INSTALLATION ######################
COPY environment.yml /
RUN apt-get update && apt-get install -y procps && apt-get clean -y
RUN conda env create -n ngscheckmate-nf -f /environment.yml && conda clean -a
RUN cd /opt/conda/envs/ngscheckmate-nf/; git clone https://github.com/parklab/NGSCheckMate.git; echo "SAMTOOLS=samtools" >> NGSCheckMate/ncm.conf; echo "BCFTOOLS=bcftools" >> NGSCheckMate/ncm.conf
ENV NCM_HOME /opt/conda/envs/ngscheckmate-nf/NGSCheckMate
ENV PATH /opt/conda/envs/ngscheckmate-nf/bin:$PATH