Enure not to expose UNIX ports out of range

Exposing an invalid port (not in range of 0 - 65535) can cause an availability issue.

Risk Level: high
Platform: Docker
Spectral Rule ID: DOCKR052

REMEDIATION

Change the port number in EXPOSE

FROM ubuntu:22.10
- EXPOSE 65555/tcp 8443
+ EXPOSE 65535/tcp 8443

Read more: