You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
385 B
14 lines
385 B
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
echo "Logging into quay.io..."
|
|
podman login quay.io
|
|
|
|
echo "Building and pushing the flightctl image..."
|
|
podman build -t quay.io/nmasse-redhat/flightctl:latest .
|
|
podman push quay.io/nmasse-redhat/flightctl:latest
|
|
|
|
echo "Build and push completed successfully."
|
|
echo "Image available at: https://quay.io/repository/nmasse-redhat/flightctl?tab=tags"
|
|
exit 0
|
|
|