#!/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