Refer to the exhibit.
A developer needs to create a Docker image that listens on port 5000. Which code snippet must be placed onto the blank in the code?
PORT 5000
LISTEN 5000
EXPOSE 5000
OPEN 5000
The EXPOSE instruction in a Dockerfile informs Docker that the container listens on the specified network ports at runtime.
EXPOSE Instruction: It does not publish the port but indicates to Docker that the application inside the container uses this port.
Listening Port: The Docker container will be configured to listen on port 5000 using EXPOSE 5000.
Submit