This repository has been archived on 2025-06-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
authentik/build
2024-12-05 17:46:48 +11:00

9 lines
182 B
Bash
Executable File

#!/usr/bin/env bash
name="git.lua.re/luaneko/luare-authentik"
tag="${1:-latest}"
image="$name:$tag"
echo "Building $image..."
podman build -t "$image" --pull .
podman push "$image"