update/refactor

This commit is contained in:
2025-05-25 12:48:57 +03:00
parent 91d3a48177
commit af04718692
10 changed files with 211 additions and 104 deletions

View File

@@ -27,7 +27,7 @@ grab_site_packages() {
PYTHON_SITE_PACKAGES=$(grab_site_packages "docker.io/python:${PYTHONTAG}")
[ -n "${PYTHON_SITE_PACKAGES:?}" ]
img="docker.io/rockdrilla/postgresql:base-v4"
img="docker.io/rockdrilla/postgresql:base-v5"
buildah bud \
-f ./Dockerfile.base \

View File

@@ -8,8 +8,8 @@ BUILDAH_ISOLATION="${BUILDAH_ISOLATION:-chroot}"
BUILDAH_NETWORK="${BUILDAH_NETWORK:-host}"
set +a
img="docker.io/rockdrilla/postgresql:deps-v4"
base="docker.io/rockdrilla/postgresql:base-v4"
img="docker.io/rockdrilla/postgresql:deps-v5"
base="docker.io/rockdrilla/postgresql:base-v5"
exec buildah bud \
-f ./Dockerfile.deps \

View File

@@ -12,7 +12,7 @@ POSTGRESQL_VERSION="${1:-16.7}"
PG_MAJOR="${POSTGRESQL_VERSION%%.*}"
img="docker.io/rockdrilla/postgresql:${POSTGRESQL_VERSION}"
deps="docker.io/rockdrilla/postgresql:deps-v4"
deps="docker.io/rockdrilla/postgresql:deps-v5"
c=$(buildah from --pull=missing "${deps}")
[ -n "${c:?}" ]