sudo podman build --squash -t simple-http-server:latest .
sudo skopeo inspect containers-storage:localhost/simple-http-server:latest
sudo skopeo copy --authfile=/home/cloud-user/rbo-demo-demo-auth.json containers-storage:localhost/simple-http-server:latest docker://quay.io/rbo-demo/simple-http-server:latest
export VERSION=$(date +%Y%m%d%H%M)
export IMAGE="quay.io/openshift-examples/simple-http-server:${VERSION}"
podman manifest rm ${IMAGE}
podman build --platform linux/amd64,linux/arm64 --manifest ${IMAGE} .
podman manifest push ${IMAGE}podman run -ti --rm -p 8080:8080 $IMAGE