This is an sample project for Server Side Render(SSR) Application with React and Next.js, from a Pluralsight course React Apps for Beginners
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
$ git clone https://github.com/purrox/react-server-render.git
$ npm install
$ jsonserver db.json
$ node server.js
$ docker build -t <IMAGE_NAME> .
$ docker images
$ docker tag <IMAGE ID> <USER>/<IMAGE_NAME>
$ docker run -d -p 3333:3000 <USER>/<IMAGE_NAME>:latest