├── .dockerignore ├── Dockerfile ├── LICENSE ├── README.md ├── Set-WebConfigSettings.ps1 ├── Startup.ps1 └── test ├── test.ps1 └── test_files ├── expected-web.config └── initial-web.config /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | test 3 | LICENSE 4 | README.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonychu/aspnet-env-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonychu/aspnet-env-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonychu/aspnet-env-docker/HEAD/README.md -------------------------------------------------------------------------------- /Set-WebConfigSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonychu/aspnet-env-docker/HEAD/Set-WebConfigSettings.ps1 -------------------------------------------------------------------------------- /Startup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonychu/aspnet-env-docker/HEAD/Startup.ps1 -------------------------------------------------------------------------------- /test/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonychu/aspnet-env-docker/HEAD/test/test.ps1 -------------------------------------------------------------------------------- /test/test_files/expected-web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonychu/aspnet-env-docker/HEAD/test/test_files/expected-web.config -------------------------------------------------------------------------------- /test/test_files/initial-web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonychu/aspnet-env-docker/HEAD/test/test_files/initial-web.config --------------------------------------------------------------------------------