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
43 lines (34 loc) · 1.11 KB
/
Dockerfile
File metadata and controls
43 lines (34 loc) · 1.11 KB
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
39
40
41
42
43
FROM ubuntu:bionic
# metadata
LABEL base.image="ubuntu:bionic"
LABEL container.version="1"
LABEL software="Augur"
LABEL software.version="9.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="abigail.shockey@slh.wisc.edu"
LABEL maintainer2="Jake Garfin"
LABEL maintainer2.email="jake.garfin@state.mn.us"
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\
locales
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 &&\
mkdir /data
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen
ENV LC_ALL=en_US.UTF-8
RUN pip3 install nextstrain-augur==9.0.0 snakemake
WORKDIR /data