Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 394 Bytes

File metadata and controls

16 lines (10 loc) · 394 Bytes

Red Hat Summit Connect - Open Tech Quest - OpenShift

image

Build on Mac with Podman Destkop

export IMAGE="quay.io/openshift-examples/otq-openshift/nginx-example-app:$( date +%s )"

podman build --manifest ${IMAGE} \
    -f nginx-example-app.Containerfile \
    --platform linux/amd64,linux/arm64 .

podman manifest push ${IMAGE}