2024-10-15 22:28:37 +11:00
|
|
|
#!/bin/bash -e
|
|
|
|
set -Eeuo pipefail
|
|
|
|
|
|
|
|
export HOME=$(pwd)
|
|
|
|
|
2024-10-27 21:02:04 +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
|
2024-10-27 20:58:35 +11:00
|
|
|
DATE=$(date +"%Y%m%d")
|
2024-10-27 21:02:04 +11:00
|
|
|
buildah tag quay.io/blasthavers/worldwideportal:latest "quay.io/blasthavers/worldwideportal:$DATE"
|
|
|
|
buildah push quay.io/blasthavers/worldwideportal:latest
|
|
|
|
buildah push "quay.io/blasthavers/worldwideportal:$DATE"
|