Skip to content

Commit

Permalink
feat: include version number in image
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcurts authored Feb 8, 2024
1 parent 366848b commit 2f0af16
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ RUN wget https://github.com/BenLangmead/bowtie2/releases/download/v2.3.2/bowtie2
mkdir bowtie2 && \
cp bowtie2-2.3.2-legacy/bowtie2* bowtie2


FROM python:3.10-buster as base
WORKDIR /app
COPY --from=prep /build/bowtie2/* /usr/local/bin/
Expand All @@ -35,6 +36,7 @@ RUN maturin build --release
RUN poetry export > requirements.txt
RUN pip install -r requirements.txt
RUN pip install /app/target/wheels/rust_utils*.whl
COPY VERSION* ./

FROM base as test
WORKDIR /app
Expand Down

0 comments on commit 2f0af16

Please sign in to comment.