9 lines
302 B
Bash
Executable File
9 lines
302 B
Bash
Executable File
#!/bin/bash -e
|
|
set -Eeuo pipefail
|
|
|
|
export HOME=$(pwd)
|
|
|
|
buildah build -f wwp-repo/container/Containerfile -t quay.io/blasthavers/worldwideportal:latest
|
|
echo "$CONTAINER_REGISTRY_KEY" | buildah login --password-stdin --username blasthavers quay.io
|
|
buildah push quay.io/blasthavers/worldwideportal:latest
|