This is a Git repository that holds a Node application and a Dockerfile. The dockerfile is placed in a subfolder of the project instead of being at the root folder
To compile and package using Docker
docker build . -t my-app -f docker/Dockerfile
docker run -p 3000:3000 my-app
and then visit http://localhost:3000 in your browser
There is also a codefresh.yml for easy usage with the Codefresh CI/CD platform.
More details can be found in Codefresh documentation.