From 65e85e300e8eda8b3d6c4fdcc1a27d72bcd96ea6 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Tue, 3 Jan 2023 17:34:05 +0100 Subject: [PATCH] fix: [postgres] add required dependency of ``pgm`` ``coreutils`` is required to install full ``sort`` implementation with the ``-V`` option used by ``pgm``. --- postgres/build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/build/Dockerfile b/postgres/build/Dockerfile index 97bd54c..16ec55c 100644 --- a/postgres/build/Dockerfile +++ b/postgres/build/Dockerfile @@ -30,7 +30,7 @@ RUN curl -L https://raw.githubusercontent.com/0k/pgm/0.0.6/bin/pgm > /bin/pgm && FROM common -RUN apk -U add pv python2 file sed +RUN apk -U add pv python2 file sed coreutils COPY --from=builder /home/packager/packages/tmp/x86_64/*.apk /tmp/ COPY --from=builder /bin/pgm /bin