Files
postgresql-citus-patroni-image/build-scripts/image-deps.sh
Konstantin Demin c8b15861d9 major upgrade
except citus - no packages for Debian 13 yet
2025-08-15 17:02:15 +03:00

19 lines
414 B
Bash
Executable File

#!/bin/sh
set -ef
cd "$(dirname "$0")/.."
set -a
BUILDAH_FORMAT="${BUILDAH_FORMAT:-docker}"
BUILDAH_ISOLATION="${BUILDAH_ISOLATION:-chroot}"
BUILDAH_NETWORK="${BUILDAH_NETWORK:-host}"
set +a
img="docker.io/rockdrilla/postgresql:deps-v6"
base="docker.io/rockdrilla/postgresql:base-v6"
exec buildah bud \
-f ./Dockerfile.deps \
-t "${img}" \
--pull=missing --no-cache \
--build-arg "BASE_IMAGE=${base}" \