We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 366848b commit 2f0af16Copy full SHA for 2f0af16
Dockerfile
@@ -12,6 +12,7 @@ RUN wget https://github.com/BenLangmead/bowtie2/releases/download/v2.3.2/bowtie2
12
mkdir bowtie2 && \
13
cp bowtie2-2.3.2-legacy/bowtie2* bowtie2
14
15
+
16
FROM python:3.10-buster as base
17
WORKDIR /app
18
COPY --from=prep /build/bowtie2/* /usr/local/bin/
@@ -35,6 +36,7 @@ RUN maturin build --release
35
36
RUN poetry export > requirements.txt
37
RUN pip install -r requirements.txt
38
RUN pip install /app/target/wheels/rust_utils*.whl
39
+COPY VERSION* ./
40
41
FROM base as test
42
0 commit comments