9 lines
182 B
Bash
Executable File
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"
|