From b1078ac8b6bcf21b49c7cb2210b23aeef7d82d64 Mon Sep 17 00:00:00 2001 From: Johannes Darms Date: Fri, 12 Apr 2024 13:07:58 +0200 Subject: [PATCH] Added postgresql-client to the list of installed apk packages Added psql to the configbaker images. This allows the config maker to interact with the postgres database used by dataverse. --- modules/container-configbaker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/container-configbaker/Dockerfile b/modules/container-configbaker/Dockerfile index 91bf5a2c875..dae4a3aa272 100644 --- a/modules/container-configbaker/Dockerfile +++ b/modules/container-configbaker/Dockerfile @@ -21,7 +21,7 @@ ENV SCRIPT_DIR="/scripts" \ ENV PATH="${PATH}:${SCRIPT_DIR}" \ BOOTSTRAP_DIR="${SCRIPT_DIR}/bootstrap" -ARG APK_PACKAGES="curl bind-tools netcat-openbsd jq bash dumb-init wait4x ed" +ARG APK_PACKAGES="curl bind-tools netcat-openbsd jq bash dumb-init wait4x ed postgresql-client" RUN true && \ # Install necessary software and tools