docker build --tag exampleproject .
docker run --name example -d -p 8005:80 exampleproject
docker container start example
docker container stop example
go to
http://localhost:8005/api/values
if you see this json
[ "value1", "value2" ]
success. you are awesome!