forked from LANL-Bioinformatics/PhaME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
27 lines (19 loc) · 920 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
26
27
# This is the Dockefile to build PhaME
############################# Base Docker Image ################################
FROM continuumio/miniconda3
############################# MAINTAINER #######################################
MAINTAINER Migun Shakya <[email protected]>
############################# METADATA #######################################
LABEL version="1.0.1"
LABEL software="PhaME"
LABEL description="Phylogenetic Analysis and Molecular Evolution"
LABEL website="https://github.com/mshakya/PhaME"
LABEL tags="genomics"
############################# INSTALLATION #####################################
RUN conda config --add channels r
RUN conda config --add channels defaults
RUN conda config --add channels conda-forge
RUN conda config --add channels bioconda
RUN conda install -c bioconda phame
# RUN sh test/TestAll.sh
#############################ENVIRONMENT#####################################