diff options
author | BtbN <btbn@btbn.de> | 2022-11-22 05:52:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 05:52:18 +0100 |
commit | f343ed42ff1d288989f3a577362cc672e4cae437 (patch) | |
tree | 180b8381ad2662d0df8f3a971fd709932cce7fd2 /Dockerfile | |
parent | 51a33ce77a32b85eaff37670c40a497aaef13e18 (diff) |
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
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
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 \ |