Skip to content

Commit 0ac8b81

Browse files
committed
fix: Install procps for Nextflow task metrics collection
1 parent 8db5392 commit 0ac8b81

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ COPY src ./src
1111

1212
RUN apt-get update \
1313
&& apt-get upgrade -y \
14+
# procps provides `ps`, which Nextflow requires to collect task metrics.
15+
&& apt-get install -y --no-install-recommends procps \
1416
&& rm -rf /var/lib/apt/lists/* \
1517
&& python -m pip install --upgrade pip \
1618
&& python -m pip install .

0 commit comments

Comments
 (0)