build(deps): declare Alpine runtime identifier
All checks were successful
Caddy Manager CI build / docker (push) Successful in 3m25s

This commit is contained in:
2026-07-26 16:20:04 +07:00
parent 96f0112449
commit a94abca127

View File

@@ -20,6 +20,12 @@
<!-- No localized content, so skip loading ICU entirely (alpine ships no ICU anyway) --> <!-- No localized content, so skip loading ICU entirely (alpine ships no ICU anyway) -->
<InvariantGlobalization>true</InvariantGlobalization> <InvariantGlobalization>true</InvariantGlobalization>
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:10.0-alpine</ContainerBaseImage> <ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:10.0-alpine</ContainerBaseImage>
<!--
The alpine base is musl. Declared here so a plain `dotnet restore` evaluates the
same RID the container publish uses, keeping packages.lock.json consistent for
CI's locked-mode restore (otherwise NU1004).
-->
<RuntimeIdentifiers>linux-musl-x64</RuntimeIdentifiers>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>