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
22 lines (18 loc) · 690 Bytes
/
Copy pathDockerfile
File metadata and controls
22 lines (18 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# base image
FROM ubuntu:bionic
# metadata
LABEL base.image="ubuntu:bionic"
LABEL version="7.450"
LABEL software="MAFFT"
LABEL software.version="7.450"
LABEL description="Multiple alignment program for amino acid or nucleotide sequences"
LABEL website="https://mafft.cbrc.jp/alignment/software/"
LABEL license="https://mafft.cbrc.jp/alignment/software/license.txt"
LABEL maintainer="Kevin Libuit"
LABEL maintainer.email="kevin.libuit@dgs.virginia.gov"
RUN apt-get update && apt-get install -y wget
# install mafft binary and make /data
RUN wget https://mafft.cbrc.jp/alignment/software/mafft_7.450-1_amd64.deb && \
dpkg -i mafft_7.450-1_amd64.deb && \
mkdir /data
WORKDIR /data