dotnet / sdk-container-builds

Libraries and build tooling to create container images from .NET projects using MSBuild
https://learn.microsoft.com/en-us/dotnet/core/docker/publish-as-container
MIT License
179 stars 34 forks source link

Enable inferencing for the new runtime `extra` images #533

Closed richlander closed 6 months ago

richlander commented 8 months ago

https://github.com/dotnet/dotnet-docker/discussions/5092

These should be used with globalization invariant mode is disabled and container family = "jammy-chiseled"

baronfel commented 8 months ago

Summary of the logic changes:

* we'll still default apps to full-size debian-based images * if a user opts into jammy-chiseled via ContainerFamily AND the user is using globalization (as seen by the MSBuild property), we will amend their jammy-chiseled to jammy-chiseled-extra from the nightly repository so that their apps will actually support globalization.

This is wrong, more details to come.