Add a Dockerfile which copies all the repo's contents, install npm dependencies, and build the project. For the start command, it will execute npm start
Add a docker-compose.yml which uses the locally built docker image based on the Dockerfile and the .env file.
Update the README.md file with instructions for docker.
Dockerfile
which copies all the repo's contents, install npm dependencies, and build the project. For the start command, it will executenpm start
docker-compose.yml
which uses the locally built docker image based on theDockerfile
and the.env
file.