Start by: npm install
Run the server: npm run dev
it will refresh the server for you.
Server will run on: localhost:5000
step one: install Docker on your machine
Step two: create the image.
$ docker build -t {give-the-img-a-name} .
Step three:
$ docker run -p 5000:5000 -d --name {a-container-name} {the-img-name-from-step2}
now check http://localhost:5000/
docker-compose -f docker-compose.yml up -d
now check https://localhost:5000