dotnet
بيئة تشغيل · Language runtime · standard · v10.0.110
حزمة .NET SDK مُحصّنة لبناء وتشغيل تطبيقات .NET. استخدمها كأساس بناء؛ توفّر أحدث 3 إصدارات مستقرة بما في ذلك LTS (8/9/10).
تقرير الأمان (Trivy)
تقرير الأمان (Trivy) · dotnet 10.0.110
الإصدارات المنشورة
1 وسمكل وسم هو فهرس متعدد المعماريات (amd64 + arm64) مثبّت بالبصمة. موسوم بالإصدار، وليس أبدًا :latest.
| الإصدار | الحجم | النشر | البصمة |
|---|---|---|---|
| 10.0.110الأحدث | 271.1 MB | 2026-07-21 | sha256:1344024b5aae… |
استخدمها كصورة أساس
أشِر إليها في سطر FROM داخل ملف Dockerfile. تعمل بدون صلاحيات الجذر، بنظام ملفات جذر للقراءة فقط، ومبنية لـ amd64 و arm64.
FROM ghcr.io/quenchworks/images/dotnet:10.0.110أو اسحبها مباشرة
docker pull ghcr.io/quenchworks/images/dotnet:10.0.110- خط الإصدار
- 10.0.110
- الخط الأحدث
- 10.0.110
- المعماريات
- amd64, arm64
- تعمل كـ
- nonroot (uid 1001)
- نظام الملفات الجذر
- للقراءة فقط
- الرخصة
- MIT
تحقّق من سلسلة التوريد
هذه الصورة موقّعة بـ cosign وتحمل قائمة مكوّنات SPDX SBOM وشهادة منشأ بناء SLSA على البصمة نفسها. تحقّق من الثلاثة جميعها قبل أن تبني عليها:
# 1. signature — built and signed by QuenchWorks CI
cosign verify ghcr.io/quenchworks/images/dotnet:10.0.110 \
--certificate-identity-regexp 'https://github.com/quenchworks/.+' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com
# 2. SLSA build provenance — which workflow built it, from what
cosign verify-attestation --type https://slsa.dev/provenance/v1 ghcr.io/quenchworks/images/dotnet:10.0.110 \
--certificate-identity-regexp 'https://github.com/quenchworks/.+' \
--certificate-oidc-issuer https://token.actions.githubusercontent.com
# 3. SPDX SBOM — the package inventory
cosign verify-attestation --type https://spdx.dev/Document/v2.3 ghcr.io/quenchworks/images/dotnet:10.0.110 \
--certificate-identity-regexp 'https://github.com/quenchworks/.+' \
--certificate-oidc-issuer https://token.actions.githubusercontent.comراجع دليل SBOM والمنشأ لقراءة قائمة المكوّنات واستخدام هذه الفحوص في التكامل المستمر.
أفضل ممارسة لملف Dockerfile لـ 10.0.110
Restore and dotnet publish in Release with the full SDK, then run the published output on the aspnet base for web apps. The SDK and the NuGet cache stay in the build stage.
# Build stage: restore, then publish the app.FROM ghcr.io/quenchworks/images/dotnet:10.0.110 AS buildUSER rootWORKDIR /srcENV NUGET_PACKAGES=/tmp/nuget \ DOTNET_CLI_TELEMETRY_OPTOUT=1
COPY ["App.csproj", "./"]RUN ["dotnet", "restore", "App.csproj"]COPY . .RUN ["dotnet", "publish", "App.csproj", "-c", "Release", "-o", "/app/publish", "--no-restore"]
# Runtime stage: ASP.NET Core runtime, nonroot.FROM ghcr.io/quenchworks/images/aspnet:10.0.110 AS runtimeWORKDIR /appENV ASPNETCORE_URLS=http://+:8080 \ DOTNET_CLI_TELEMETRY_OPTOUT=1COPY --from=build /app/publish ./USER 1001EXPOSE 8080ENTRYPOINT ["dotnet", "App.dll"]هذا الملف Dockerfile مثبّت على خط 10.0.110 . للاطّلاع على شرح سطرًا بسطر وعلى متغيّرات المنظومات (npm/Yarn، pip/uv/Poetry، Maven/Gradle)، راجع دليل ابنِ تطبيق .NET.
المشروع المنبع: https://github.com/dotnet/runtime