forked from StaPH-B/docker-builds
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
35 lines (30 loc) · 975 Bytes
/
Dockerfile
File metadata and controls
35 lines (30 loc) · 975 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
33
34
35
FROM ubuntu:bionic
# metadata
LABEL base.image="ubuntu:bionic"
LABEL container.version="1"
LABEL software="Augur"
LABEL software.version="6.3.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="Kelsey Florek"
LABEL maintainer.email="kelsey.florek@slh.wisc.edu"
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 wget https://github.com/nextstrain/augur/archive/6.3.0.tar.gz && \
tar -xzf 6.3.0.tar.gz && \
pip3 install /augur-6.3.0/ && \
mkdir /data
WORKDIR /data