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
33 lines (28 loc) · 766 Bytes
/
Dockerfile
File metadata and controls
33 lines (28 loc) · 766 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
# base image
FROM ubuntu:bionic
# metadata
LABEL base.image="ubuntu:bionic"
LABEL container.version="1"
LABEL software="kma"
LABEL software.version="1.2.21"
LABEL description="K-mer alignment"
LABEL website="https://bitbucket.org/genomicepidemiology/kma/src/master/"
LABEL license="https://bitbucket.org/genomicepidemiology/kma/src/master/"
LABEL license.type="Apache License, V2.0"
LABEL maintainer="Curtis Kapsak"
LABEL maintainer.email="pjx8@cdc.gov"
# install dependencies
RUN apt-get update && apt-get -y install \
gcc \
libz-dev \
make \
git
RUN git clone https://bitbucket.org/genomicepidemiology/kma.git && \
cd /kma && \
git fetch && \
git checkout 1.2.21 && \
make && \
mkdir /data
ENV PATH="$PATH:/kma" \
LC_ALL=C
WORKDIR /data