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