docker build -t weatherapp .
docker create weatherapp
docker run -it --rm -e ASPNETCORE_ENVIRONMENT=Development -p 8000:80 --name weatherapp_test weatherapp
API accessed through http://localhost:8000/weatherforecast
Swagger accessed through http://localhost:8000/swagger/index.html