From 0c01f4bfdef74b8ff1f152efdf1edbf71b54dde0 Mon Sep 17 00:00:00 2001
From: Nigel Gott <nigel@baserow.io>
Date: Mon, 23 Jan 2023 10:34:51 +0000
Subject: [PATCH] Fix missing dependency in all in one image breaking `docker
 exec -i baserow...

---
 changelog.md                 | 1 +
 deploy/all-in-one/Dockerfile | 1 +
 2 files changed, 2 insertions(+)

diff --git a/changelog.md b/changelog.md
index c5de26c31..64768b508 100644
--- a/changelog.md
+++ b/changelog.md
@@ -13,6 +13,7 @@ For example:
 
 ### Bug Fixes
 
+* Add missing `procps` system package to all-in-one docker image fixing `/baserow/supervisor/docker-postgres-setup.sh run` (#1512)[https://gitlab.com/bramw/baserow/-/issues/1512]
 * Fixed API docs for creating and updating rows are missing for Multiple Select and Multiple Collaborator fields. [#1196](https://gitlab.com/bramw/baserow/-/issues/1196)
 
 ### Refactors
diff --git a/deploy/all-in-one/Dockerfile b/deploy/all-in-one/Dockerfile
index 2976f446c..71f012ac9 100644
--- a/deploy/all-in-one/Dockerfile
+++ b/deploy/all-in-one/Dockerfile
@@ -56,6 +56,7 @@ RUN apt-get update && \
     gawk \
     git \
     xmlsec1 \
+    procps \
     && \
     # ========================
     # Install Node and Yarn