forked from IARCbioinfo/RNAseq-transcript-nf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
executable file
·23 lines (19 loc) · 1.01 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
################## BASE IMAGE #####################
FROM continuumio/miniconda3:4.7.12
################## METADATA #######################
LABEL base_image="continuumio/miniconda3"
LABEL version="4.7.12"
LABEL software="rnaseq-transcript-nf"
LABEL software.version="2.2"
LABEL about.summary="Container image containing all requirements for rnaseq-transcript-nf"
LABEL about.home="http://github.com/IARCbioinfo/RNAseq-transcript-nf"
LABEL about.documentation="http://github.com/IARCbioinfo/RNAseq-transcript-nf/README.md"
LABEL about.license_file="http://github.com/IARCbioinfo/RNAseq-transcript-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 rnaseq-transcript-nf -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/rnaseq-transcript-nf/bin:$PATH