aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--standalone/src/main/assembly/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/src/main/assembly/Dockerfile b/standalone/src/main/assembly/Dockerfile
index 81e1e944..06c035c0 100644
--- a/standalone/src/main/assembly/Dockerfile
+++ b/standalone/src/main/assembly/Dockerfile
@@ -13,7 +13,7 @@ ENV PG_HOME=/usr/share/postgresql \
#Install PostgreSQL as user root, Common users do not have permission to perform the installation
USER root
-RUN apk update && apk add postgresql
+RUN apk update && apk add postgresql && apk add bash
# Adjust PostgreSQL configuration
RUN cp ${PG_HOME}/pg_hba.conf.sample ${PG_HOME}/pg_hba.conf && \