Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions docs/core/install/linux-alpine.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Install .NET on Alpine
description: Learn about which versions of .NET SDK and .NET Runtime are supported, and how to install .NET on Alpine.
author: adegeo
ms.author: adegeo
ms.date: 12/11/2025
ms.date: 03/20/2026
ms.custom: linux-related-content
---

Expand Down Expand Up @@ -75,10 +75,6 @@ When you install with a package manager, these libraries are installed for you.

### 3.20+

- ca-certificates
- libgcc
- libssl3
- libstdc++
- zlib (.NET 8 only)
- icu-libs and icu-data-full (unless the .NET app is running in [globalization-invariant mode](../runtime-config/globalization.md#invariant-mode))
- tzdata
Comment on lines 76 to 80
Copy link

Copilot AI Mar 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The dependency list under ### 3.20+ no longer includes ca-certificates, libgcc, libssl3, or libstdc++, but this page is referenced for manual installs/self-contained apps (not just the runtime-deps Docker images). On a minimal Alpine install those packages aren't guaranteed to be present, and missing libssl3/C++ runtime libs can prevent dotnet from starting or break TLS. Please restore these packages in the list, or explicitly scope the guidance to the official .NET Alpine base images and add a separate note for bare Alpine installs.

Copilot uses AI. Check for mistakes.
Expand Down
Loading