From f4e0d054807363992662af0dd352597087392893 Mon Sep 17 00:00:00 2001 From: Judith Bernett Date: Thu, 21 Nov 2024 14:36:31 +0100 Subject: [PATCH] installing ps for nextflow --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 364322e..2f5715d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,3 +51,6 @@ COPY poetry.lock ./ # Install drevalpy RUN pip install . + +# Nextflow needs the command ps to be available +RUN apt-get update && apt-get install -y procps && rm -rf /var/lib/apt/lists/*