11 lines
314 B
Bash
11 lines
314 B
Bash
|
#!/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 \
|