Skip to content

Commit

Permalink
updated dockerfile with hostile ver arg and hostile test paths
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorpaisie authored Dec 6, 2024
1 parent f2e2542 commit f25b3b2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions hostile/1.1.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit f25b3b2

Please sign in to comment.