First-time podman setup:
```bash
podman machine init
```
Get the podman VM running:
```bash
podman machine start
```
Start a build with either the Dockerfile and/or against a tag:
```bash
podman build -f Dockerfile -t my-image:latest .
podman build -f Dockerfile
podman build -t my-image:latest
```
Logging into a Container Registry:
```bash
podman login container_registry_url
```
Special case - Azure Container Registry:
```bash
az login
az acr login --name insightscr --expose-token --query accessToken -o tsv
TOKEN=$(az acr login --name insightscr --expose-token --query accessToken -o tsv)
podman login insightscr.azurecr.io -u 00000000-0000-0000-0000-000000000000 -p "$TOKEN"
```