Skip to content

Commit 2f0af16

Browse files
authored
feat: include version number in image
1 parent 366848b commit 2f0af16

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ RUN wget https://github.com/BenLangmead/bowtie2/releases/download/v2.3.2/bowtie2
1212
mkdir bowtie2 && \
1313
cp bowtie2-2.3.2-legacy/bowtie2* bowtie2
1414

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

3941
FROM base as test
4042
WORKDIR /app

0 commit comments

Comments
 (0)