From 3acd0b5097cf7cc393a6fcf15020d2e184d24b39 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Mon, 7 Jul 2025 13:58:11 +0300 Subject: [PATCH] antithesis: Install procps in Docker image Having "ps" around is pretty helpful... --- Dockerfile.antithesis | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.antithesis b/Dockerfile.antithesis index 9c8734925..46ea80a4d 100644 --- a/Dockerfile.antithesis +++ b/Dockerfile.antithesis @@ -86,7 +86,7 @@ RUN maturin build # FROM debian:bullseye-slim AS runtime -RUN apt-get update && apt-get install -y bash curl xz-utils python3 sqlite3 bc binutils pip && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y bash curl xz-utils python3 procps sqlite3 bc binutils pip && rm -rf /var/lib/apt/lists/* RUN pip install antithesis WORKDIR /app