From 6e9f3c5f838e9235b44e03dd807eeeffebcdce20 Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 24 May 2024 17:51:07 -0500 Subject: [PATCH 1/2] Bumping version to 3.2.5 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 9b7a431..448ada3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.2.4 \ No newline at end of file +3.2.5 \ No newline at end of file From c8e12d68f61b166688436336597e998653e99d96 Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 24 May 2024 17:52:28 -0500 Subject: [PATCH 2/2] Using latest base images --- 12/Dockerfile | 2 +- 13/ALPINE_EDITION | 1 + 13/Dockerfile | 2 +- 14/Dockerfile | 2 +- 15/Dockerfile | 2 +- 16/Dockerfile | 2 +- generate-dockerfiles.sh | 4 ++-- 7 files changed, 8 insertions(+), 7 deletions(-) create mode 100644 13/ALPINE_EDITION diff --git a/12/Dockerfile b/12/Dockerfile index ecc8e90..118297f 100644 --- a/12/Dockerfile +++ b/12/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/alpine-s6:alpine3.18-5.2.6 +FROM bfren/alpine-s6:alpine3.18-5.3.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/13/ALPINE_EDITION b/13/ALPINE_EDITION new file mode 100644 index 0000000..318956c --- /dev/null +++ b/13/ALPINE_EDITION @@ -0,0 +1 @@ +3.19 \ No newline at end of file diff --git a/13/Dockerfile b/13/Dockerfile index f4d6c81..fbefc35 100644 --- a/13/Dockerfile +++ b/13/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/alpine-s6:alpine3.19-5.2.6 +FROM bfren/alpine-s6:alpine3.19-5.3.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/14/Dockerfile b/14/Dockerfile index 6963c96..ecbb190 100644 --- a/14/Dockerfile +++ b/14/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/alpine-s6:alpine3.19-5.2.6 +FROM bfren/alpine-s6:alpine3.20-5.3.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/15/Dockerfile b/15/Dockerfile index a981dbf..9534a42 100644 --- a/15/Dockerfile +++ b/15/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/alpine-s6:alpine3.19-5.2.6 +FROM bfren/alpine-s6:alpine3.20-5.3.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/16/Dockerfile b/16/Dockerfile index ed4381b..b8c0001 100644 --- a/16/Dockerfile +++ b/16/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/alpine-s6:alpine3.19-5.2.6 +FROM bfren/alpine-s6:alpine3.20-5.3.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/generate-dockerfiles.sh b/generate-dockerfiles.sh index 79e1b1e..dccbdc2 100755 --- a/generate-dockerfiles.sh +++ b/generate-dockerfiles.sh @@ -4,7 +4,7 @@ set -euo pipefail docker pull bfren/alpine -BASE_VERSION="5.2.6" +BASE_VERSION="5.3.0" echo "Base: ${BASE_VERSION}" POSTGRESQL_VERSIONS="12 13 14 15 16" @@ -15,7 +15,7 @@ for V in ${POSTGRESQL_VERSIONS} ; do if [ -f "${ALPINE_EDITION_FILE}" ] ; then ALPINE_EDITION=`cat ${ALPINE_EDITION_FILE}` else - ALPINE_EDITION="3.19" + ALPINE_EDITION="3.20" fi DOCKERFILE=$(docker run \