authentik/build

9 lines
205 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 --build-arg "TAG=$tag" .
podman push "$image"