antithesis: Install procps in Docker image

Having "ps" around is pretty helpful...
This commit is contained in:
Pekka Enberg 2025-07-07 13:58:11 +03:00
parent 8d844c13da
commit 3acd0b5097

View file

@ -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