9 lines
221 B
Bash
Executable File
9 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
set -ef
|
|
cd "$(dirname "$0")/.."
|
|
|
|
exec buildah bud --isolation chroot --network host --format docker \
|
|
-f ./Dockerfile \
|
|
-t docker.io/rockdrilla/postgresql:16.3 \
|
|
--pull=missing --no-cache --omit-history \
|