sdk-container-builds
sdk-container-builds copied to clipboard
Libraries and build tooling to create container images from .NET projects using MSBuild
Some error/exception messages are vague and need some care (MissingLinkToRegistry, MissingLayerNode, etc.). We can also add more details from the context.
Even though .NET doesn't support truly static compilation, it's possible that someone might want to package their app in a single standalone layer. The common way to do this is...
I am currently trying to use a custom base image for one of my containers, but for some reason I keep getting 404 errors from the "CreateNewImage" task provided by...
I have a couple of projects where I tried pushing the images directly to Azure Container Registry with `-p:ContainerRegistry` during `dotnet publish` as a part of my CI (To avoid...
For any .NET code that relies on the ICU package (e.g. `System.Globalization`), it will fail to run in a certain set of .NET images which do not have ICU installed....
Currently users that containerize a standard `blazorwasm` .NET SDK template end up with something unrunnable - because this style of application is compiled to WASM and then intended to be...
The OCI specs say that layers should preserve timestamps, but I expect to (optionally?) violate that, because we will want to produce bit-for-bit identical output given identical repo builds, just...
it'll be important to document that the Entrypoint needs to be a fully-rooted path. I could see users doing something like ```xml $(AppName) ``` and attempting to package up an...
Right now we pull manifests and the configuration blob for a given image on every operation. These structures should also be stored in the local content store, with a similar...
Say I have a native executable (could be a .NET 7 Runtime-specific, self-contained, single-file application, or anything really) that I want to containerize. I want to be able to easily...