2024-10-15 22:28:37 +11:00
|
|
|
#!/bin/bash -e
|
|
|
|
set -Eeuo pipefail
|
|
|
|
|
|
|
|
export HOME=$(pwd)
|
|
|
|
|
2024-10-27 18:05:25 +11:00
|
|
|
buildah --root containers 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
|
2024-10-27 18:05:25 +11:00
|
|
|
buildah --root containers push quay.io/blasthavers/worldwideportal:latest
|