diff --git a/12/Dockerfile b/12/Dockerfile index 6b2e70e..bd6d7c0 100644 --- a/12/Dockerfile +++ b/12/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.18-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.18-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/13/Dockerfile b/13/Dockerfile index 09c8450..510ce3f 100644 --- a/13/Dockerfile +++ b/13/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.19-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.19-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/14/Dockerfile b/14/Dockerfile index 31d4e5f..fde8bb7 100644 --- a/14/Dockerfile +++ b/14/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.20-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.20-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/15/ALPINE_EDITION b/15/ALPINE_EDITION new file mode 100644 index 0000000..93a84c3 --- /dev/null +++ b/15/ALPINE_EDITION @@ -0,0 +1 @@ +3.22 \ No newline at end of file diff --git a/15/Dockerfile b/15/Dockerfile index 6194e95..bedc08c 100644 --- a/15/Dockerfile +++ b/15/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.22-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.22-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/16/Dockerfile b/16/Dockerfile index e01de57..9c0c7aa 100644 --- a/16/Dockerfile +++ b/16/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.22-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.23-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/17/Dockerfile b/17/Dockerfile index 6c78695..2c4dc64 100644 --- a/17/Dockerfile +++ b/17/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.22-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.23-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/VERSION b/VERSION index 0c89fc9..99eba4d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.0 \ No newline at end of file +4.1.0 \ No newline at end of file diff --git a/VERSION_MINOR b/VERSION_MINOR index 389f774..8a36cd1 100644 --- a/VERSION_MINOR +++ b/VERSION_MINOR @@ -1 +1 @@ -4.0 \ No newline at end of file +4.1 \ No newline at end of file diff --git a/generate-dockerfiles.sh b/generate-dockerfiles.sh index 2f31ced..db70f61 100755 --- a/generate-dockerfiles.sh +++ b/generate-dockerfiles.sh @@ -4,7 +4,7 @@ set -euo pipefail docker pull bfren/alpine -BASE_VERSION="6.0.1" +BASE_VERSION="6.1.0" echo "Base: ${BASE_VERSION}" POSTGRESQL_VERSIONS="12 13 14 15 16 17" @@ -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.22" + ALPINE_EDITION="3.23" fi DOCKERFILE=$(docker run \