I'm trying to publish a .NET 5 WPF to an Azure App Service. When I tried to publish to Azure I got an error that pointed me to https://aka.ms/vs-add-docker. The Docker support in Visual Studio section looked very promising, especially when I read this
Docker support is available for ASP.NET projects, ASP.NET Core projects, and .NET Core and .NET Framework console projects.
(Emphasis mine). However, I'm not seeing how I can add Docker support to my .NET 5 WPF app. Is it possible to do so or have I misunderstood the linked document?
Addendum
I am not trying to "dockerize" the WPF app. According to the linked document I gave, Docker is required to publish the WPF application installer. My intent is to publish the WPF installer to an Azure App Service. Then the users can go to the URL, click on the link to run the ClickOnce installer. That will install it on their Windows machine. From that point forward the user is running the WPF locally on their machine. I'm going with how I understand the link I provided, which is what I was directed to by VS 2019 when I tried publishing the WPF app to the Azure App Service, and it failed. Perhaps the error message taht VS 2019 gave me isn't appropriate to publishing a WPF app to an Azure App Service. I don't know; I'm just following where the error message directed me to go.