From c584d722eb7c3604c7bbd6d34a5afa5c7dd02888 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Tue, 1 Feb 2022 18:01:31 +0100 Subject: [PATCH] new: [postgres] upgrade ``pgm`` to version ``0.0.6`` This will allow easier usage of ``pgm`` through ``docker {exec,run}``. 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 069a44f..97bd54c 100644 --- a/postgres/build/Dockerfile +++ b/postgres/build/Dockerfile @@ -25,7 +25,7 @@ USER root RUN apk add curl -RUN curl -L https://raw.githubusercontent.com/0k/pgm/0.0.5/bin/pgm > /bin/pgm && \ +RUN curl -L https://raw.githubusercontent.com/0k/pgm/0.0.6/bin/pgm > /bin/pgm && \ chmod +x /bin/pgm FROM common