cd app
npm install
npm run test
npm run start
docker build -t react-image ./docker
docker run -d -it --name calculator -p 3000:3000 -v $(pwd)/app:/app react-image
docker exec -it calculator sh
docker container stop calculator
docker container rm calculator