pnpm
بيئة تشغيل · Build tool · standard · v11.22.0
صورة أساس لـ Node مع pnpm مُثبّت مسبقًا عبر corepack، تُستخدم كمرحلة بناء لمشاريع pnpm. الإصدارات 10/11.
خط الإصدار
يعيش الخط الأحدث في الصفحة الأساسية؛ وللخطوط الأقدم صفحاتها الخاصة لتتمكّن من تثبيت ذلك الإصدار بالضبط والتحقق منه.
تقرير الأمان (Trivy)
تقرير الأمان (Trivy) · pnpm 11.22.0
الإصدارات المنشورة
14 وسومكل وسم هو فهرس متعدد المعماريات (amd64 + arm64) مثبّت بالبصمة. موسوم بالإصدار، وليس أبدًا :latest.
| الإصدار | الحجم | النشر | البصمة |
|---|---|---|---|
| 11.22.0الأحدث | 61.3 MB | 2026-08-26 | sha256:dada76c73a92… |
| 11.21.0 | 60.7 MB | 2026-08-10 | sha256:349ca2785aca… |
| 11.19.0 | 60.6 MB | 2026-08-02 | sha256:5e71ddcd82f2… |
| 11.18.0 | 60.8 MB | 2026-07-30 | sha256:6651a33a5602… |
| 11.17.0 | 61.4 MB | 2026-07-26 | sha256:c1672159e7ea… |
| 11.16.0 | 64.4 MB | 2026-07-23 | sha256:86e9955c2253… |
| 11.15.1 | 64.3 MB | 2026-07-21 | sha256:1f4da2495d09… |
| 11.13.0 | 60.3 MB | 2026-07-15 | sha256:406b8ffd5605… |
| 11.12.0 | 60.4 MB | 2026-07-12 | sha256:7393ab80db39… |
| 11.11.0 | 60.3 MB | 2026-07-09 | sha256:c6d0616e4093… |
| 11.10.0 | 60.3 MB | 2026-07-05 | sha256:ac595ece57bf… |
| 11.9.0 | 60.3 MB | 2026-07-04 | sha256:43e60aeafb92… |
| 10.34.4 | 60.4 MB | 2026-06-28 | sha256:fae7eaeb4c99… |
| 9.15.9 | 59.9 MB | 2026-06-28 | sha256:e5ba85caf5cf… |
استخدمها كصورة أساس
أشِر إليها في سطر FROM داخل ملف Dockerfile. تعمل بدون صلاحيات الجذر، بنظام ملفات جذر للقراءة فقط، ومبنية لـ amd64 و arm64.
FROM ghcr.io/quenchworks/images/pnpm:11.22.0أو اسحبها مباشرة
docker pull ghcr.io/quenchworks/images/pnpm:11.22.0- خط الإصدار
- 11.22.0
- الخط الأحدث
- 11.22.0, 11.21.0, 11.19.0, 11.18.0, 11.17.0, 11.16.0, 11.15.1, 11.13.0, 11.12.0, 11.11.0, 11.10.0, 11.9.0, 10.34.4, 9.15.9
- المعماريات
- amd64, arm64
- تعمل كـ
- nonroot (uid 1001)
- نظام الملفات الجذر
- للقراءة فقط
- الرخصة
- MIT
تحقّق من سلسلة التوريد
هذه الصورة موقّعة بـ cosign وتحمل قائمة مكوّنات SPDX SBOM وشهادة منشأ بناء SLSA على البصمة نفسها. تحقّق من الثلاثة جميعها قبل أن تبني عليها:
# 1. signature — built and signed by QuenchWorks CI
cosign verify ghcr.io/quenchworks/images/pnpm:11.22.0 \
--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/pnpm:11.22.0 \
--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/pnpm:11.22.0 \
--certificate-identity-regexp 'https://github.com/quenchworks/.+' \
--certificate-oidc-issuer https://token.actions.githubusercontent.comراجع دليل SBOM والمنشأ لقراءة قائمة المكوّنات واستخدام هذه الفحوص في التكامل المستمر.
أفضل ممارسة لملف Dockerfile لـ 11.22.0
pnpm leads: enabled here through corepack on the pnpm base, it resolves and locks the dependency set, builds, then a clean node base receives only the production node_modules and the built output.
# Build stage: pnpm resolves, locks, and builds (dev deps included here).FROM ghcr.io/quenchworks/images/pnpm:11.22.0 AS buildUSER rootWORKDIR /appENV PNPM_HOME=/tmp/pnpm
COPY package.json pnpm-lock.yaml ./RUN ["pnpm", "install", "--frozen-lockfile"]COPY . .RUN ["pnpm", "run", "build"]# Re-resolve to production-only for the runtime stage.RUN ["pnpm", "install", "--prod", "--frozen-lockfile"]
# Runtime stage: prod node_modules + built dist on a slim node base, nonroot.FROM ghcr.io/quenchworks/images/node:26.7.0 AS runtimeWORKDIR /appENV NODE_ENV=productionCOPY --from=build /app/node_modules ./node_modulesCOPY --from=build /app/dist ./distCOPY --from=build /app/package.json ./package.jsonUSER 1001EXPOSE 3000CMD ["node", "dist/server.js"]هذا الملف Dockerfile مثبّت على خط 11.22.0 . للاطّلاع على شرح سطرًا بسطر وعلى متغيّرات المنظومات (npm/Yarn، pip/uv/Poetry، Maven/Gradle)، راجع دليل ابنِ تطبيق Node.
المشروع المنبع: https://pnpm.io