-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated dockerfile with hostile ver arg and hostile test paths
- Loading branch information
1 parent
f2e2542
commit f25b3b2
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,19 +38,20 @@ RUN wget https://github.com/bede/hostile/archive/refs/tags/${HOSTILE_VER}.tar.gz | |
|
||
# Stage 2: Final image | ||
FROM ubuntu:focal AS app | ||
ARG HOSTILE_VER | ||
|
||
LABEL base.image="ubuntu:focal" | ||
LABEL dockerfile.version="1" | ||
LABEL software="hostile" | ||
LABEL software.version="${HOSTILE_VER}" | ||
LABEL software.version=${HOSTILE_VER} | ||
LABEL description="Precise host read removal." | ||
LABEL website="https://github.com/bede/hostile" | ||
LABEL license.url="https://github.com/bede/hostile?tab=MIT-1-ov-file#readme" | ||
LABEL maintainer="Taylor K. Paisie" | ||
LABEL maintainer.email="[email protected]" | ||
|
||
COPY --from=builder /usr/ /usr/ | ||
COPY --from=builder /hostile-1.1.0/tests/data/sars-cov-2/ /data/test/sars-cov-2/ | ||
COPY --from=builder /hostile-${HOSTILE_VER}/tests/data/sars-cov-2/ /data/test/sars-cov-2/ | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
ca-certificates && update-ca-certificates && \ | ||
|