This is an example Node application that uses React, Yarn and Docker. It is packaged using Codefresh.
More details can be found in the documentation page.
To install dependencies
yarn install
or
npm install
yarn test
or
npm test
yarn start
or
npm start
....and navigate your browser to http://localhost:3000/
docker build -t my-react-app .
docker run -p 80:80 my-react-app
There is also a codefresh.yml for easy usage with the Codefresh CI/CD platform.
Enjoy!