From 2a0483b6de0ce03ed3d85d43951caf876235ffcc Mon Sep 17 00:00:00 2001 From: Mostafa Abdelraouf Date: Thu, 16 Feb 2023 21:50:03 -0600 Subject: [PATCH] Add psmisc to CI image (#327) I accidentally removed `psmisc` from the image and now the test builds are failing. I am adding it back in this PR --- Dockerfile.ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index 4ebeefd..42d213a 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -1,7 +1,7 @@ FROM cimg/rust:1.62.0 RUN sudo apt-get update && \ sudo apt-get install -y \ - postgresql-contrib-12 postgresql-client-12 libpq-dev \ + psmisc postgresql-contrib-12 postgresql-client-12 libpq-dev \ ruby ruby-dev python3 python3-pip \ lcov llvm-11 iproute2 && \ sudo apt-get upgrade curl && \