forked from StaPH-B/docker-builds
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
32 lines (27 loc) · 872 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
FROM ubuntu:bionic
# metadata
LABEL base.image="ubuntu:bionic"
LABEL container.version="1"
LABEL software="Augur"
LABEL software.version="7.0.2"
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]"
RUN apt-get update && apt-get install -y python3 \
wget\
python3-pip\
iqtree\
build-essential\
zlib1g-dev\
pkg-config\
mafft
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==7.0.2
WORKDIR /data