├── .gitignore ├── 1-nginx ├── Dockerfile └── wwwroot │ └── index.html ├── 10-bullseyeslim-net6 ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 11-runtimedeps-net6 ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 12-distroless2-net6 ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj ├── tmp.tar └── wwwroot │ └── index.html ├── 12a-distroless2-net6-aggressivetrim ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj ├── tmp.tar └── wwwroot │ └── index.html ├── 13-bullseyeslim-net7 ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 14-distroless-net7-aggressivetrim ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── global.json ├── staticfiles.csproj ├── tmp.tar └── wwwroot │ └── index.html ├── 15-nativeaot-net7 ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── global.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 16-distroless-net8-aggressivetrim ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── global.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 2-default ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 3-focal ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 4-alpine12 ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 5-alpine13 ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 6-busterslim ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 7-runtimedeps ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj └── wwwroot │ └── index.html ├── 8-distroless ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj ├── tmp.tar └── wwwroot │ └── index.html ├── 9-distroless2 ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj ├── tmp.tar └── wwwroot │ └── index.html ├── README.md ├── alpine-distroless └── Dockerfile ├── final-aspnet ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj ├── tmp.tar └── wwwroot │ └── index.html ├── final-net6 ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj ├── tmp.tar └── wwwroot │ └── index.html ├── final ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── staticfiles.csproj ├── tmp.tar └── wwwroot │ └── index.html └── global.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /1-nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/1-nginx/Dockerfile -------------------------------------------------------------------------------- /1-nginx/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/1-nginx/wwwroot/index.html -------------------------------------------------------------------------------- /10-bullseyeslim-net6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/10-bullseyeslim-net6/Dockerfile -------------------------------------------------------------------------------- /10-bullseyeslim-net6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/10-bullseyeslim-net6/Program.cs -------------------------------------------------------------------------------- /10-bullseyeslim-net6/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/10-bullseyeslim-net6/Properties/launchSettings.json -------------------------------------------------------------------------------- /10-bullseyeslim-net6/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/10-bullseyeslim-net6/appsettings.Development.json -------------------------------------------------------------------------------- /10-bullseyeslim-net6/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/10-bullseyeslim-net6/appsettings.json -------------------------------------------------------------------------------- /10-bullseyeslim-net6/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/10-bullseyeslim-net6/staticfiles.csproj -------------------------------------------------------------------------------- /10-bullseyeslim-net6/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/10-bullseyeslim-net6/wwwroot/index.html -------------------------------------------------------------------------------- /11-runtimedeps-net6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/11-runtimedeps-net6/Dockerfile -------------------------------------------------------------------------------- /11-runtimedeps-net6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/11-runtimedeps-net6/Program.cs -------------------------------------------------------------------------------- /11-runtimedeps-net6/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/11-runtimedeps-net6/Properties/launchSettings.json -------------------------------------------------------------------------------- /11-runtimedeps-net6/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/11-runtimedeps-net6/appsettings.Development.json -------------------------------------------------------------------------------- /11-runtimedeps-net6/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/11-runtimedeps-net6/appsettings.json -------------------------------------------------------------------------------- /11-runtimedeps-net6/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/11-runtimedeps-net6/staticfiles.csproj -------------------------------------------------------------------------------- /11-runtimedeps-net6/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/11-runtimedeps-net6/wwwroot/index.html -------------------------------------------------------------------------------- /12-distroless2-net6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12-distroless2-net6/Dockerfile -------------------------------------------------------------------------------- /12-distroless2-net6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12-distroless2-net6/Program.cs -------------------------------------------------------------------------------- /12-distroless2-net6/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12-distroless2-net6/Properties/launchSettings.json -------------------------------------------------------------------------------- /12-distroless2-net6/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12-distroless2-net6/appsettings.Development.json -------------------------------------------------------------------------------- /12-distroless2-net6/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12-distroless2-net6/appsettings.json -------------------------------------------------------------------------------- /12-distroless2-net6/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12-distroless2-net6/staticfiles.csproj -------------------------------------------------------------------------------- /12-distroless2-net6/tmp.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12-distroless2-net6/tmp.tar -------------------------------------------------------------------------------- /12-distroless2-net6/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12-distroless2-net6/wwwroot/index.html -------------------------------------------------------------------------------- /12a-distroless2-net6-aggressivetrim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12a-distroless2-net6-aggressivetrim/Dockerfile -------------------------------------------------------------------------------- /12a-distroless2-net6-aggressivetrim/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12a-distroless2-net6-aggressivetrim/Program.cs -------------------------------------------------------------------------------- /12a-distroless2-net6-aggressivetrim/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12a-distroless2-net6-aggressivetrim/Properties/launchSettings.json -------------------------------------------------------------------------------- /12a-distroless2-net6-aggressivetrim/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12a-distroless2-net6-aggressivetrim/appsettings.Development.json -------------------------------------------------------------------------------- /12a-distroless2-net6-aggressivetrim/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12a-distroless2-net6-aggressivetrim/appsettings.json -------------------------------------------------------------------------------- /12a-distroless2-net6-aggressivetrim/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12a-distroless2-net6-aggressivetrim/staticfiles.csproj -------------------------------------------------------------------------------- /12a-distroless2-net6-aggressivetrim/tmp.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12a-distroless2-net6-aggressivetrim/tmp.tar -------------------------------------------------------------------------------- /12a-distroless2-net6-aggressivetrim/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/12a-distroless2-net6-aggressivetrim/wwwroot/index.html -------------------------------------------------------------------------------- /13-bullseyeslim-net7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/13-bullseyeslim-net7/Dockerfile -------------------------------------------------------------------------------- /13-bullseyeslim-net7/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/13-bullseyeslim-net7/Program.cs -------------------------------------------------------------------------------- /13-bullseyeslim-net7/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/13-bullseyeslim-net7/Properties/launchSettings.json -------------------------------------------------------------------------------- /13-bullseyeslim-net7/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/13-bullseyeslim-net7/appsettings.Development.json -------------------------------------------------------------------------------- /13-bullseyeslim-net7/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/13-bullseyeslim-net7/appsettings.json -------------------------------------------------------------------------------- /13-bullseyeslim-net7/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/13-bullseyeslim-net7/staticfiles.csproj -------------------------------------------------------------------------------- /13-bullseyeslim-net7/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/13-bullseyeslim-net7/wwwroot/index.html -------------------------------------------------------------------------------- /14-distroless-net7-aggressivetrim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/14-distroless-net7-aggressivetrim/Dockerfile -------------------------------------------------------------------------------- /14-distroless-net7-aggressivetrim/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/14-distroless-net7-aggressivetrim/Program.cs -------------------------------------------------------------------------------- /14-distroless-net7-aggressivetrim/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/14-distroless-net7-aggressivetrim/Properties/launchSettings.json -------------------------------------------------------------------------------- /14-distroless-net7-aggressivetrim/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/14-distroless-net7-aggressivetrim/appsettings.Development.json -------------------------------------------------------------------------------- /14-distroless-net7-aggressivetrim/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/14-distroless-net7-aggressivetrim/appsettings.json -------------------------------------------------------------------------------- /14-distroless-net7-aggressivetrim/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/14-distroless-net7-aggressivetrim/global.json -------------------------------------------------------------------------------- /14-distroless-net7-aggressivetrim/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/14-distroless-net7-aggressivetrim/staticfiles.csproj -------------------------------------------------------------------------------- /14-distroless-net7-aggressivetrim/tmp.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/14-distroless-net7-aggressivetrim/tmp.tar -------------------------------------------------------------------------------- /14-distroless-net7-aggressivetrim/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/14-distroless-net7-aggressivetrim/wwwroot/index.html -------------------------------------------------------------------------------- /15-nativeaot-net7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/15-nativeaot-net7/Dockerfile -------------------------------------------------------------------------------- /15-nativeaot-net7/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/15-nativeaot-net7/Program.cs -------------------------------------------------------------------------------- /15-nativeaot-net7/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/15-nativeaot-net7/Properties/launchSettings.json -------------------------------------------------------------------------------- /15-nativeaot-net7/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/15-nativeaot-net7/appsettings.Development.json -------------------------------------------------------------------------------- /15-nativeaot-net7/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/15-nativeaot-net7/appsettings.json -------------------------------------------------------------------------------- /15-nativeaot-net7/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/15-nativeaot-net7/global.json -------------------------------------------------------------------------------- /15-nativeaot-net7/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/15-nativeaot-net7/staticfiles.csproj -------------------------------------------------------------------------------- /15-nativeaot-net7/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/15-nativeaot-net7/wwwroot/index.html -------------------------------------------------------------------------------- /16-distroless-net8-aggressivetrim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/16-distroless-net8-aggressivetrim/Dockerfile -------------------------------------------------------------------------------- /16-distroless-net8-aggressivetrim/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/16-distroless-net8-aggressivetrim/Program.cs -------------------------------------------------------------------------------- /16-distroless-net8-aggressivetrim/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/16-distroless-net8-aggressivetrim/Properties/launchSettings.json -------------------------------------------------------------------------------- /16-distroless-net8-aggressivetrim/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/16-distroless-net8-aggressivetrim/appsettings.Development.json -------------------------------------------------------------------------------- /16-distroless-net8-aggressivetrim/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/16-distroless-net8-aggressivetrim/appsettings.json -------------------------------------------------------------------------------- /16-distroless-net8-aggressivetrim/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/16-distroless-net8-aggressivetrim/global.json -------------------------------------------------------------------------------- /16-distroless-net8-aggressivetrim/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/16-distroless-net8-aggressivetrim/staticfiles.csproj -------------------------------------------------------------------------------- /16-distroless-net8-aggressivetrim/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/16-distroless-net8-aggressivetrim/wwwroot/index.html -------------------------------------------------------------------------------- /2-default/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/2-default/Dockerfile -------------------------------------------------------------------------------- /2-default/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/2-default/Program.cs -------------------------------------------------------------------------------- /2-default/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/2-default/Properties/launchSettings.json -------------------------------------------------------------------------------- /2-default/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/2-default/Startup.cs -------------------------------------------------------------------------------- /2-default/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/2-default/appsettings.Development.json -------------------------------------------------------------------------------- /2-default/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/2-default/appsettings.json -------------------------------------------------------------------------------- /2-default/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/2-default/staticfiles.csproj -------------------------------------------------------------------------------- /2-default/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/2-default/wwwroot/index.html -------------------------------------------------------------------------------- /3-focal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/3-focal/Dockerfile -------------------------------------------------------------------------------- /3-focal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/3-focal/Program.cs -------------------------------------------------------------------------------- /3-focal/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/3-focal/Properties/launchSettings.json -------------------------------------------------------------------------------- /3-focal/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/3-focal/Startup.cs -------------------------------------------------------------------------------- /3-focal/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/3-focal/appsettings.Development.json -------------------------------------------------------------------------------- /3-focal/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/3-focal/appsettings.json -------------------------------------------------------------------------------- /3-focal/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/3-focal/staticfiles.csproj -------------------------------------------------------------------------------- /3-focal/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/3-focal/wwwroot/index.html -------------------------------------------------------------------------------- /4-alpine12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/4-alpine12/Dockerfile -------------------------------------------------------------------------------- /4-alpine12/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/4-alpine12/Program.cs -------------------------------------------------------------------------------- /4-alpine12/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/4-alpine12/Properties/launchSettings.json -------------------------------------------------------------------------------- /4-alpine12/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/4-alpine12/Startup.cs -------------------------------------------------------------------------------- /4-alpine12/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/4-alpine12/appsettings.Development.json -------------------------------------------------------------------------------- /4-alpine12/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/4-alpine12/appsettings.json -------------------------------------------------------------------------------- /4-alpine12/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/4-alpine12/staticfiles.csproj -------------------------------------------------------------------------------- /4-alpine12/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/4-alpine12/wwwroot/index.html -------------------------------------------------------------------------------- /5-alpine13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/5-alpine13/Dockerfile -------------------------------------------------------------------------------- /5-alpine13/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/5-alpine13/Program.cs -------------------------------------------------------------------------------- /5-alpine13/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/5-alpine13/Properties/launchSettings.json -------------------------------------------------------------------------------- /5-alpine13/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/5-alpine13/Startup.cs -------------------------------------------------------------------------------- /5-alpine13/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/5-alpine13/appsettings.Development.json -------------------------------------------------------------------------------- /5-alpine13/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/5-alpine13/appsettings.json -------------------------------------------------------------------------------- /5-alpine13/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/5-alpine13/staticfiles.csproj -------------------------------------------------------------------------------- /5-alpine13/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/5-alpine13/wwwroot/index.html -------------------------------------------------------------------------------- /6-busterslim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/6-busterslim/Dockerfile -------------------------------------------------------------------------------- /6-busterslim/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/6-busterslim/Program.cs -------------------------------------------------------------------------------- /6-busterslim/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/6-busterslim/Properties/launchSettings.json -------------------------------------------------------------------------------- /6-busterslim/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/6-busterslim/Startup.cs -------------------------------------------------------------------------------- /6-busterslim/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/6-busterslim/appsettings.Development.json -------------------------------------------------------------------------------- /6-busterslim/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/6-busterslim/appsettings.json -------------------------------------------------------------------------------- /6-busterslim/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/6-busterslim/staticfiles.csproj -------------------------------------------------------------------------------- /6-busterslim/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/6-busterslim/wwwroot/index.html -------------------------------------------------------------------------------- /7-runtimedeps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/7-runtimedeps/Dockerfile -------------------------------------------------------------------------------- /7-runtimedeps/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/7-runtimedeps/Program.cs -------------------------------------------------------------------------------- /7-runtimedeps/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/7-runtimedeps/Properties/launchSettings.json -------------------------------------------------------------------------------- /7-runtimedeps/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/7-runtimedeps/Startup.cs -------------------------------------------------------------------------------- /7-runtimedeps/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/7-runtimedeps/appsettings.Development.json -------------------------------------------------------------------------------- /7-runtimedeps/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/7-runtimedeps/appsettings.json -------------------------------------------------------------------------------- /7-runtimedeps/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/7-runtimedeps/staticfiles.csproj -------------------------------------------------------------------------------- /7-runtimedeps/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/7-runtimedeps/wwwroot/index.html -------------------------------------------------------------------------------- /8-distroless/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/8-distroless/Dockerfile -------------------------------------------------------------------------------- /8-distroless/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/8-distroless/Program.cs -------------------------------------------------------------------------------- /8-distroless/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/8-distroless/Properties/launchSettings.json -------------------------------------------------------------------------------- /8-distroless/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/8-distroless/Startup.cs -------------------------------------------------------------------------------- /8-distroless/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/8-distroless/appsettings.Development.json -------------------------------------------------------------------------------- /8-distroless/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/8-distroless/appsettings.json -------------------------------------------------------------------------------- /8-distroless/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/8-distroless/staticfiles.csproj -------------------------------------------------------------------------------- /8-distroless/tmp.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/8-distroless/tmp.tar -------------------------------------------------------------------------------- /8-distroless/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/8-distroless/wwwroot/index.html -------------------------------------------------------------------------------- /9-distroless2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/9-distroless2/Dockerfile -------------------------------------------------------------------------------- /9-distroless2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/9-distroless2/Program.cs -------------------------------------------------------------------------------- /9-distroless2/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/9-distroless2/Properties/launchSettings.json -------------------------------------------------------------------------------- /9-distroless2/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/9-distroless2/Startup.cs -------------------------------------------------------------------------------- /9-distroless2/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/9-distroless2/appsettings.Development.json -------------------------------------------------------------------------------- /9-distroless2/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/9-distroless2/appsettings.json -------------------------------------------------------------------------------- /9-distroless2/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/9-distroless2/staticfiles.csproj -------------------------------------------------------------------------------- /9-distroless2/tmp.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/9-distroless2/tmp.tar -------------------------------------------------------------------------------- /9-distroless2/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/9-distroless2/wwwroot/index.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/README.md -------------------------------------------------------------------------------- /alpine-distroless/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/alpine-distroless/Dockerfile -------------------------------------------------------------------------------- /final-aspnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-aspnet/Dockerfile -------------------------------------------------------------------------------- /final-aspnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-aspnet/Program.cs -------------------------------------------------------------------------------- /final-aspnet/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-aspnet/Properties/launchSettings.json -------------------------------------------------------------------------------- /final-aspnet/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-aspnet/Startup.cs -------------------------------------------------------------------------------- /final-aspnet/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-aspnet/appsettings.Development.json -------------------------------------------------------------------------------- /final-aspnet/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-aspnet/appsettings.json -------------------------------------------------------------------------------- /final-aspnet/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-aspnet/staticfiles.csproj -------------------------------------------------------------------------------- /final-aspnet/tmp.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-aspnet/tmp.tar -------------------------------------------------------------------------------- /final-aspnet/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-aspnet/wwwroot/index.html -------------------------------------------------------------------------------- /final-net6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-net6/Dockerfile -------------------------------------------------------------------------------- /final-net6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-net6/Program.cs -------------------------------------------------------------------------------- /final-net6/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-net6/Properties/launchSettings.json -------------------------------------------------------------------------------- /final-net6/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-net6/appsettings.Development.json -------------------------------------------------------------------------------- /final-net6/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-net6/appsettings.json -------------------------------------------------------------------------------- /final-net6/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-net6/staticfiles.csproj -------------------------------------------------------------------------------- /final-net6/tmp.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-net6/tmp.tar -------------------------------------------------------------------------------- /final-net6/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final-net6/wwwroot/index.html -------------------------------------------------------------------------------- /final/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final/Dockerfile -------------------------------------------------------------------------------- /final/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final/Program.cs -------------------------------------------------------------------------------- /final/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final/Properties/launchSettings.json -------------------------------------------------------------------------------- /final/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final/Startup.cs -------------------------------------------------------------------------------- /final/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final/appsettings.Development.json -------------------------------------------------------------------------------- /final/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final/appsettings.json -------------------------------------------------------------------------------- /final/staticfiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final/staticfiles.csproj -------------------------------------------------------------------------------- /final/tmp.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final/tmp.tar -------------------------------------------------------------------------------- /final/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/final/wwwroot/index.html -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpbevin/dotnet-staticfiles/HEAD/global.json --------------------------------------------------------------------------------