Sad Tux - Windows bias detected
This page contains Windows bias

About This Page

This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.

Bias Analysis

Detected Bias Types
windows_first
powershell_heavy
windows_tools
missing_linux_example
Summary
The documentation is heavily biased toward Windows environments. All prerequisites, installation steps, and operational instructions are centered on Windows OS, PowerShell, and Microsoft-specific tools (e.g., Web Deploy). There are no Linux equivalents or examples for containerizing ASP.NET applications, and Linux is only mentioned in the context of Java/Tomcat workloads. The documentation assumes the user has access to and is operating from a Windows machine, with no guidance for Linux users wishing to containerize ASP.NET apps.
Recommendations
  • Provide equivalent instructions and tooling support for running the App Containerization tool on Linux (or clarify if not supported).
  • Include Linux shell (bash) examples alongside PowerShell commands where applicable.
  • If the tool is Windows-only, explicitly state this limitation early and suggest alternative approaches for Linux users (e.g., using Docker CLI, manual Dockerfile creation, or other open-source tools).
  • Offer guidance or links for containerizing ASP.NET Core applications on Linux, which is a common cross-platform scenario.
  • Balance the mention/order of Windows and Linux tools and patterns, ensuring Linux is not always secondary or omitted.
  • Where possible, provide troubleshooting and artifact locations for both Windows and Linux environments.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2026-01-14 00:00 #250 in_progress Biased Biased
2026-01-13 00:00 #246 completed Biased Biased
2026-01-11 00:00 #240 completed Biased Biased
2026-01-10 00:00 #237 completed Biased Biased
2026-01-09 00:34 #234 completed Biased Biased
2026-01-08 00:53 #231 completed Biased Biased
2026-01-06 18:15 #225 cancelled Clean Clean
2025-08-17 00:01 #83 cancelled Clean Clean
2025-07-13 21:37 #48 completed Clean Clean
2025-07-12 23:44 #41 cancelled Biased Biased
2025-07-09 13:09 #3 cancelled Clean Clean
2025-07-08 04:23 #2 cancelled Biased Biased

Flagged Code Snippets

   .\AppContainerizationInstaller.ps1
   
> # Run entrypoint script.
> COPY ./Entryscript.ps1 c:/Entryscript.ps1
> ENTRYPOINT powershell c:/Entryscript.ps1
> 
> # Run entrypoint script.
> COPY ["./Entryscript.ps1", "c:/Entryscript.ps1"]
> ENTRYPOINT ["powershell", "c:/Entryscript.ps1"]
>