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
40 lines (28 loc) · 1.06 KB
/
Dockerfile
File metadata and controls
40 lines (28 loc) · 1.06 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
FROM python:3.9.17-slim AS app
ARG ACI_VER="1.15.250702"
LABEL base.image="python:3.9.17-slim"
LABEL dockerfile.version="1"
LABEL software="ACI"
LABEL software.version="${ACI_VER}"
LABEL description="Visualize Amplicon Coverage/Depth"
LABEL website="https://github.com/erinyoung/ACI"
LABEL license="https://github.com/erinyoung/ACI?tab=MIT-1-ov-file#readme"
LABEL maintainer="Erin Young"
LABEL maintainer.email="eriny@utah.gov"
RUN apt-get update && apt-get install -y --no-install-recommends \
procps && \
apt-get autoclean && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache amplicon_coverage_inspector==${ACI_VER}
ENV PATH="$PATH" \
LC_ALL=C
CMD [ "aci", "--help" ]
WORKDIR /data
FROM app AS test
WORKDIR /test
RUN aci --help && \
aci --version
RUN apt-get update && apt-get install -y --no-install-recommends wget
RUN wget -q https://github.com/erinyoung/ACI/raw/main/tests/data/test.bam && \
wget -q https://raw.githubusercontent.com/erinyoung/ACI/main/tests/data/test.bed && \
aci --bam test.bam --bed test.bed --out out && \
ls out/*