2024-10-15 22:28:37 +11:00
|
|
|
#!/bin/bash -e
|
|
|
|
set -Eeuo pipefail
|
|
|
|
|
|
|
|
export HOME=$(pwd)
|
|
|
|
|
2024-10-26 00:25:16 +11:00
|
|
|
buildah build -f wwp-repo/container/Containerfile -t quay.io/blasthavers/worldwideportal:latest
|
2024-10-15 22:28:37 +11:00
|
|
|
echo "$CONTAINER_REGISTRY_KEY" | buildah login --password-stdin --username blasthavers quay.io
|
|
|
|
buildah push quay.io/blasthavers/worldwideportal:latest
|