-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathDockerfile
35 lines (30 loc) · 994 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
FROM ubuntu:bionic
# metadata
LABEL base.image="ubuntu:bionic"
LABEL dockerfile.version="1"
LABEL software="Augur"
LABEL software.version="8.0.0"
LABEL description="Pipeline components for real-time phylodynamic analysis"
LABEL website="https://github.com/nextstrain/augur"
LABEL license="https://github.com/nextstrain/augur/blob/master/LICENSE.txt"
LABEL maintainer="Abigail Shockey"
LABEL maintainer.email="[email protected]"
LABEL maintainer2="Jake Garfin"
LABEL maintainer2.email="[email protected]"
RUN apt-get update && apt-get install -y python3 \
wget\
python3-pip\
iqtree=1.6.1+dfsg-1\
build-essential\
zlib1g-dev\
pkg-config\
mafft=7.310-1
RUN wget https://github.com/vcftools/vcftools/releases/download/v0.1.16/vcftools-0.1.16.tar.gz &&\
tar -xzf vcftools-0.1.16.tar.gz &&\
rm vcftools-0.1.16.tar.gz &&\
cd vcftools-0.1.16 &&\
./configure &&\
make && make install
RUN pip3 install nextstrain-augur==8.0.0 &&\
mkdir /data
WORKDIR /data