forked from mandricigor/imrep
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (23 loc) · 714 Bytes
/
Dockerfile
File metadata and controls
32 lines (23 loc) · 714 Bytes
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
28
29
30
31
32
FROM ubuntu:18.04
RUN apt-get update --fix-missing
RUN apt-get install -y build-essential \
wget \
bzip2 \
samtools \
libbam-dev \
libhts-dev \
python-minimal
RUN apt-get clean && \
rm -rf /var/lib/apt/lists/*
ENV PATH="/root/miniconda3/bin:${PATH}"
ARG PATH="/root/miniconda3/bin:${PATH}"
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \
&& mkdir /root/.conda \
&& bash Miniconda3-latest-Linux-x86_64.sh -b \
&& rm -f Miniconda3-latest-Linux-x86_64.sh
RUN pip install --upgrade pip
WORKDIR /imrep
COPY . .
RUN cd suffix_tree && python ./setup.py install --user
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "./imrep.py"]