Skip to content

Commit 4706436

Browse files
committed
add docker file
1 parent 12ed513 commit 4706436

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

Dockerfile

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
############################################################
2+
# Dockerfile to build CRISPResso
3+
############################################################
4+
5+
# Set the base image to anaconda python 2.7
6+
FROM continuumio/anaconda
7+
8+
# File Author / Maintainer
9+
MAINTAINER Luca Pinello
10+
11+
ENV SHELL bash
12+
13+
RUN apt-get update && apt-get install default-jre samtools bowtie2 make gcc g++ zlib1g-dev zlib1g unzip -y
14+
15+
RUN conda install biopython
16+
17+
RUN wget https://github.com/lucapinello/CRISPResso/archive/master.zip
18+
19+
RUN unzip master.zip
20+
21+
RUN cd CRISPResso-master && python setup.py install
22+
23+
ENV PATH /root/CRISPResso_dependencies/bin:$PATH
24+
25+
RUN rm -Rf CRISPResso-master
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+

0 commit comments

Comments
 (0)