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