Skip to content

Commit

Permalink
fix: prevent error related to forward ref
Browse files Browse the repository at this point in the history
  • Loading branch information
igboyes authored Jun 12, 2024
1 parent da7f7c6 commit fadb2dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN wget https://zlib.net/pigz/pigz-2.8.tar.gz && \
cd pigz-2.8 && \
make

FROM python:3.12-bookworm as build
FROM python:3.12.3-bookworm as build
WORKDIR /workflow
RUN curl -sSL https://install.python-poetry.org | python -
ENV PATH="/root/.local/bin:${PATH}" \
Expand All @@ -25,7 +25,7 @@ ENV PATH="/root/.local/bin:${PATH}" \
COPY pyproject.toml poetry.lock ./
RUN poetry install --without dev --no-root

FROM python:3.12-bookworm as base
FROM python:3.12.3-bookworm as base
WORKDIR /workflow
ENV VIRTUAL_ENV=/app/.venv \
PATH="/workflow/.venv/bin:/opt/fastqc:${PATH}"
Expand Down

0 comments on commit fadb2dd

Please sign in to comment.