Use as a content base https://github.com/Microsoft/dotnet-framework-docker/blob/master/samples/dotnetapp/dotnet-docker-unit-testing.md

o Prepare required JustMock stuff

  call prepare.bat

o Build docker image

  docker build --target testrunner -t jmsample:test .

o Run docker image

  docker run --rm -v %CD%\TestResults:C:\build\TestResults -it jmsample:test

NOTES: Remove all unused intermediate containers
  
  for /f "tokens=*" %i in ('docker images -q -f "dangling=true"') do docker rmi %i