Docker is the easiest way to build this. The commands are:
- Build container:
docker build -t mde -f .\.devcontainer\Dockerfile .
- Run container:
docker run -it mde -v <path-to-repo>:/mde
To debug the Dockerfile, you want to do something like: docker run -it -v <development-location>\markdown-editor:/mde mde bash
.