adding `--security-opt label=disable` to workaround the following error:
```
time="2024-02-29T12:04:24Z" level=fatal msg="open /sync.yml: permission denied"
```
Signed-off-by: Guillaume Abrioux <gabrioux@ibm.com>
grafana/grafana: ^(9\.?|[0-9]{2,}\.?)([0-9]*\.?){1,}$
EOF
-podman run --rm -v ./sync.yml:/sync.yml quay.io/skopeo/stable sync --src yaml --dest docker /sync.yml "${DEST_REGISTRY}" --dest-username "${DEST_USERNAME}" --dest-password "${DEST_PASSWORD}"
+podman run --rm --security-opt label=disable -v ./sync.yml:/sync.yml:ro quay.io/skopeo/stable sync --src yaml --dest docker /sync.yml "${DEST_REGISTRY}" --dest-username "${DEST_USERNAME}" --dest-password "${DEST_PASSWORD}"