Skip to content

Commit

Permalink
feat: support jobs without rights field
Browse files Browse the repository at this point in the history
* Support jobs without `rights` field.
* Prevent forward ref error.
  • Loading branch information
igboyes authored Jun 12, 2024
1 parent cadd0e1 commit 3f3f99f
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 167 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR SPAdes-3.15.5
ENV PREFIX=/build/spades
RUN ./spades_compile.sh

FROM python:3.12-bookworm as deps
FROM python:3.12.3-bookworm as deps
WORKDIR /app
COPY --from=bowtie2 /build/bowtie2/* /usr/local/bin/
COPY --from=spades /build/spades /opt/spades
Expand Down Expand Up @@ -47,7 +47,7 @@ RUN curl -sSL https://install.python-poetry.org | python -
COPY poetry.lock pyproject.toml ./
RUN poetry install

FROM python:3.12-bookworm as base
FROM python:3.12.3-bookworm as base
WORKDIR /app
COPY --from=bowtie2 /build/bowtie2/* /usr/local/bin/
COPY --from=spades /build/spades /opt/spades
Expand Down
Loading

0 comments on commit 3f3f99f

Please sign in to comment.