dotnet-docker
dotnet-docker copied to clipboard
Docker images for .NET and the .NET Tools.
The use of the `HEALTHCHECK` instruction often involves the use of a command that executes an HTTP request to the application in order to verify its health. That command might...
### Describe the Problem Currently, we have two branches - `main` and `nightly`, which map to `mcr.microsoft.com/dotnet` and `mcr.microsoft.com/dotnet/nightly` respectively today. - `main` contains the officially released and supported versions...
### Describe the Solution Enabling nullable reference types by default for the project can help guard against dereferencing null objects. See https://docs.microsoft.com/en-us/dotnet/csharp/nullable-references ### Additional Context - Also see https://github.com/dotnet/docker-tools/issues/327
### use multiple Docker containers with HTTPS and HOSTNAME for development instead of using localhost instances for developing and debugging applications, would like to use Docker containers which are closer...
The changes in https://github.com/dotnet/dotnet-docker/pull/2543 included a change to disable a test due to PowerShell not being available in the image because of its lack of support for Arm on Alpine...
### Describe the Bug The update dependencies tool uses the base URL from `manifest.versions.json` to get the checksums for new builds: https://github.com/dotnet/dotnet-docker/blob/57e9112e172fa162018c92c57e1910c020786a3a/manifest.versions.json#L42-L53 In the nightly branch, when previews/release candidates have...
This is because the version of the composite runtime and the normal runtime are built from different locations. During preview dependency flows, the versions can get out of sync until...
When ImageScenarioVerifier was introduced, all .NET Docker images spanned all product repo types. It made sense for ImageScenarioVerifier to operate on multiple types of the same image family for tests....
We're updating the samples to be fully multi-platform friendly. It would be good to have a test that validates that, along the lines of the following. It would be most...
### Describe the Bug I am using the image mcr.microsoft.com/dotnet/sdk:6.0 to publish a WPF desktop application as a standalone executable. In the .Net project file, the output type is set...