From 80ccd7407ef24cc944732c1a1636f735d2221efb Mon Sep 17 00:00:00 2001 From: Maximiliano Osorio Date: Wed, 4 Sep 2024 15:15:54 -0400 Subject: [PATCH] install pg_isready https://github.com/mintproject/mint/issues/48 --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 819a4ef..735844c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ -FROM hasura/graphql-engine:v2.10.1 +FROM hasura/graphql-engine:v2.10.2 RUN apt-get update && apt-get install -y \ curl \ + postgresql-client-common \ && rm -rf /var/lib/apt/lists/* RUN curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | INSTALL_PATH=/usr/local/bin bash -COPY . . \ No newline at end of file +COPY . .