2024-11-30 14:33:57 +11:00
|
|
|
#!/usr/bin/env bash
|
2024-12-05 17:46:48 +11:00
|
|
|
name="git.lua.re/luaneko/luare-authentik"
|
|
|
|
tag="${1:-latest}"
|
2024-11-30 14:56:55 +11:00
|
|
|
image="$name:$tag"
|
|
|
|
|
2024-12-05 17:46:48 +11:00
|
|
|
echo "Building $image..."
|
2024-11-30 14:56:55 +11:00
|
|
|
podman build -t "$image" --pull .
|
|
|
|
podman push "$image"
|