To build the image
$user@current_folder: docker build -t test-reactjs .
Start the server
$user@current_folder: docker run -it -p 8080:8080 test-reactjs
This site ready at: localhost:8080
$user@current_folder: npm install
Then
$user@current_folder: npm start
This site ready at: localhost:3000