.NET Base Image that is optimized for production and configured to operate locally the same way. This image is very opinionated; however, not restrictive.
- Maintained by Nullstone
- Where to get help Nullstone Slack
This repository builds an image for local use and production use.
The local image configures:
- Configures environment via
ASPNETCORE_ENVIRONMENT=Development
env var. - Configures listening port via
ASPNETCORE_URLS=http://+:5001
env var. - On boot, the image runs
dotnet restore
(means you only need to restart the docker container when updating dependencies)
The production images configures:
- Configures a non-root user to run app
- Configures listening port via
ASPNETCORE_URLS=http://+:9000
env var.