Which of the following commands in a Dockerfile exposes the application in the container on a specific port code example
Example 1: docker expose port
docker run -p [external]:[Internal]
#example (will open in localhost:8080 to container port 80)
docker run -p 8080:80
Example 2: docker it flag
docker container run -it ubuntu bash