From 2f0af161a2d5cc6aecc1d3ea3e93df94270553b9 Mon Sep 17 00:00:00 2001 From: mattcurts <63571383+mattcurts@users.noreply.github.com> Date: Wed, 7 Feb 2024 19:05:43 -0800 Subject: [PATCH] feat: include version number in image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 12171b8..8f9d185 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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/ @@ -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