### Feature or enhancement request details When running a container, the current version `0.4` has a `--publish` command that allows publishing one port at a time, e.g.: `-p 0.0.0.0:50001:50001/tcp -p 0.0.0.0:50002:50002/tcp` The request is to support port ranges to get closer to CLI compatibility to docker, podman, etc: `-p 0.0.0.0:50001-50002/tcp` From what I can tell, the change would have to happen somewhere around this section of the code: [ public static func publishPort(_ portText: String) throws -> PublishPort { ](https://github.com/apple/container/blob/3e52a3c305f72f1b11d8f8939a1f2106f56c6fad/Sources/ContainerClient/Flags.swift#L59) ### Code of Conduct - [x] I agree to follow this project's Code of Conduct