react app installation command code example
Example 1: create react app install
RUN IN CMD
npm install -g create-react-app
Example 2: react app using npm
npx create-react-app app-name
cd app-name
npm start
RUN IN CMD
npm install -g create-react-app
npx create-react-app app-name
cd app-name
npm start