- https://medium.com/@onejohi/building-a-simple-rest-api-with-nodejs-and-express-da6273ed7ca9
- https://github.com/fireship-io/docker-nodejs-basic-demo
docker build -t testapi:1.0.0 .
docker run -p 3000:3000 testapi:1.0.0
open in a browser: http://localhost:3000/purple
npm install
npm start (or use node ./app.js)
(or use forever to run in background if you have that installed) forever start ./app.js