From f343ed42ff1d288989f3a577362cc672e4cae437 Mon Sep 17 00:00:00 2001
From: BtbN <btbn@btbn.de>
Date: Tue, 22 Nov 2022 05:52:18 +0100
Subject: [PATCH] Add missing procps package to Dockerfile (#21028)

The new Debian-Base does not come with this by default, making the ps based health-check in the compose file fail
---
 Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Dockerfile b/Dockerfile
index 081981d46..69153c030 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -56,6 +56,7 @@ RUN apt-get update && \
     useradd -u "$UID" -g "${GID}" -m -d /opt/mastodon mastodon && \
     apt-get -y --no-install-recommends install whois \
         wget \
+        procps \
         libssl1.1 \
         libpq5 \
         imagemagick \