forked from pinellolab/CRISPResso2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
26 lines (22 loc) · 851 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
############################################################
# Dockerfile to build CRISPResso2
############################################################
FROM continuumio/miniconda:4.5.12
# File Author / Maintainer
MAINTAINER Kendell Clement
RUN apt-get update && apt-get install gcc g++ python-matplotlib python-numpy bowtie2 samtools \
-y --no-install-recommends \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
# conda installs
&& conda config --add channels defaults \
&& conda config --add channels conda-forge \
&& conda config --add channels bioconda \
&& conda install --debug biopython \
&& conda install --debug -c bioconda trimmomatic flash \
&& conda clean -ay
# install crispresso
COPY . /CRISPResso2
WORKDIR /CRISPResso2
RUN python setup.py install
ENTRYPOINT ["python","/CRISPResso2/CRISPResso2_router.py"]