-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dockerfile
executable file
·25 lines (19 loc) · 1022 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
25
################## BASE IMAGE #####################
FROM continuumio/miniconda3:4.7.12
################## METADATA #######################
LABEL base_image="continuumio/miniconda3"
LABEL version="4.7.12"
LABEL software="strelka2-nf"
LABEL software.version="1.2"
LABEL about.summary="Container image containing all requirements for strelka2-nf"
LABEL about.home="http://github.com/IARCbioinfo/strelka2-nf"
LABEL about.documentation="http://github.com/IARCbioinfo/strelka2-nf/README.md"
LABEL about.license_file="http://github.com/IARCbioinfo/strelka2-nf/LICENSE.txt"
LABEL about.license="GNU-3.0"
################## MAINTAINER ######################
MAINTAINER **nalcala** <**[email protected]**>
################## INSTALLATION ######################
COPY environment.yml /
RUN apt-get update && apt-get install -y procps && apt-get clean -y
RUN conda env create -n strelka2-nf -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/strelka2-nf/bin:/opt/conda/envs/strelka2-nf/share/strelka-2.9.10-0/bin:$PATH