From a00e2fb9f8b5f4cdaa4386d6fcd935abc0b6a576 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Wed, 8 Dec 2021 12:02:40 +0100 Subject: [PATCH] new: [postgres] update ``pgm`` version included in image from ``0.0.3`` to ``0.0.4`` Version ``0.0.4`` properly ``pgm chown`` database functions. Signed-off-by: Valentin Lab --- postgres/build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/build/Dockerfile b/postgres/build/Dockerfile index 6bfae6e..62631ed 100644 --- a/postgres/build/Dockerfile +++ b/postgres/build/Dockerfile @@ -24,7 +24,7 @@ USER root RUN apk add curl -RUN curl -L https://raw.githubusercontent.com/0k/pgm/0.0.3/bin/pgm > /bin/pgm && \ +RUN curl -L https://raw.githubusercontent.com/0k/pgm/0.0.4/bin/pgm > /bin/pgm && \ chmod +x /bin/pgm FROM common