The application runs on port 3000, but the Dockerfile contains an EXPOSE instruction that points to port 8080. Despite this, the application functions correctly when the Docker container is run with the -p 3000:3000 option. This inconsistency between the documented exposed port and the actual runtime port may cause confusion and could lead to potential misconfigurations.
The application runs on port 3000, but the Dockerfile contains an EXPOSE instruction that points to port 8080. Despite this, the application functions correctly when the Docker container is run with the -p 3000:3000 option. This inconsistency between the documented exposed port and the actual runtime port may cause confusion and could lead to potential misconfigurations.