Added AI generated scaffold based on OpenLDAP project structure.

This commit is contained in:
2026-05-14 22:45:10 +02:00
commit d03cc1c04b
7 changed files with 186 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -e
REPO_DIR="$(git rev-parse --show-toplevel)"
if command -v container >/dev/null 2>&1; then
container build -t "registry.koszewscy.waw.pl/kerberos:latest" "$REPO_DIR"
elif command -v docker >/dev/null 2>&1; then
docker buildx bake --file "$REPO_DIR/docker-bake.hcl"
else
echo "No supported container tool found." >&2
exit 1
fi