postgresql-citus-patroni-image/ci/build-image-interim.sh

11 lines
314 B
Bash
Raw Normal View History

2024-06-23 11:54:59 +03:00
#!/bin/sh
set -ef
cd "$(dirname "$0")/.."
PYTHONTAG="${1:-3.11.9-slim-bookworm}"
exec buildah bud --isolation chroot --network host --format docker \
-f ./Dockerfile.interim \
-t docker.io/rockdrilla/postgresql:16.3-base \
--build-arg "PYTHONTAG=${PYTHONTAG}" \
--pull=missing --no-cache --omit-history \