-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockerfile
38 lines (27 loc) · 952 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
28
29
30
31
32
33
34
35
36
37
38
FROM ubuntu:bionic
# to avoid interaction with tzdata during the installation
ARG DEBIAN_FRONTEND=noninteractive
# to avoid the UnicodeEncodeError (default LANG is C)
ENV LANG C.UTF-8
RUN apt-get update && \
apt-get install -y --no-install-recommends \
git \
python3 \
python3-pip \
python3-wheel \
python3-setuptools \
python3-dev \
build-essential
WORKDIR /app
COPY docker_banner.sh docker_banner.sh
RUN cat /app/docker_banner.sh >> ~/.bashrc
# to allow testing thoraxe inside the container
RUN python3 -m pip install setuptools pytest coverage pylint
RUN git clone https://github.com/PhyloSofS-Team/ProGraphMSA.git prographmsa && \
chmod a+x ./prographmsa/bin/ProGraphMSA_64 && \
cp ./prographmsa/bin/ProGraphMSA_64 /bin/ProGraphMSA && \
rm -fr prographmsa
RUN git clone https://github.com/PhyloSofS-Team/thoraxe.git && \
python3 -m pip install ./thoraxe
WORKDIR /project
CMD ["/bin/bash"]