تخطَّ إلى المحتوى
QuenchWorks

node 24.18.0

بيئة تشغيل · Language runtime · standard · v24.18.0

C 1بدون صلاحيات الجذرموقّعة بـ cosignSPDX SBOMمنشأ SLSAamd64 · arm64

بيئة تشغيل Node.js مُحصّنة مع npm، صورة أساس بدون مستخدم جذر وموقّعة وخالية من ثغرات CVE لتطبيقات JavaScript. إصدارات LTS النشطة (20/22/24).

خط الإصدار

يعيش الخط الأحدث في الصفحة الأساسية؛ وللخطوط الأقدم صفحاتها الخاصة لتتمكّن من تثبيت ذلك الإصدار بالضبط والتحقق منه.

موقّعة
cosign بدون مفتاح
SBOM
SPDX، على البصمة
المنشأ
بناء SLSA
المعماريات
amd64، arm64
تعمل كـ
nonroot (uid 1001)
حجم الصورة
56.1 MB
آخر إعادة بناء
2026-07-28

تقرير الأمان (Trivy)

C· 91/1001 fixable · rebuild clears it

تفاصيل الثغرات

node 24.18.0 · 1 CVE
الثغرة (CVE)الخطورةالحزمةالإصدار المثبَّتمُصلَحة فيالوصف
CVE-2026-58055MEDIUMlibnghttp2-141.69.0-r01.70.0-r0nghttp2: nghttp2: HTTP Request/Response Smuggling and Response-Queue Poisoning via ambiguous HTTP/1.1 Upgrade requests
0
حرجة
0
عالية
1
متوسطة
0
منخفضة
0
غير معروفة

تقرير الأمان (Trivy) · node 24.18.0

الإصدارات المنشورة

3 وسوم

كل وسم هو فهرس متعدد المعماريات (amd64 + arm64) مثبّت بالبصمة. موسوم بالإصدار، وليس أبدًا :latest.

الإصدارالحجمالنشرالبصمة
26.5.0الأحدث60.3 MB2026-07-28sha256:b54769c85510…
24.18.056.1 MB2026-07-28sha256:eca7dbc8936c…
22.23.155.7 MB2026-07-28sha256:853d071634fa…

استخدمها كصورة أساس

أشِر إليها في سطر FROM داخل ملف Dockerfile. تعمل بدون صلاحيات الجذر، بنظام ملفات جذر للقراءة فقط، ومبنية لـ amd64 و arm64.

FROM ghcr.io/quenchworks/images/node:24.18.0

أو اسحبها مباشرة

docker pull ghcr.io/quenchworks/images/node:24.18.0
خط الإصدار
24.18.0
الخط الأحدث
24.18.0, 26.5.0, 22.23.1
المعماريات
amd64, arm64
تعمل كـ
nonroot (uid 1001)
نظام الملفات الجذر
للقراءة فقط
الرخصة
MIT

تحقّق من سلسلة التوريد

هذه الصورة موقّعة بـ cosign وتحمل قائمة مكوّنات SPDX SBOM وشهادة منشأ بناء SLSA على البصمة نفسها. تحقّق من الثلاثة جميعها قبل أن تبني عليها:

# 1. signature — built and signed by QuenchWorks CI
cosign verify ghcr.io/quenchworks/images/node:24.18.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/node:24.18.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/node:24.18.0 \
  --certificate-identity-regexp 'https://github.com/quenchworks/.+' \
  --certificate-oidc-issuer https://token.actions.githubusercontent.com

راجع دليل SBOM والمنشأ لقراءة قائمة المكوّنات واستخدام هذه الفحوص في التكامل المستمر.

أفضل ممارسة لملف Dockerfile لـ 24.18.0

The four-stage pnpm pattern: a shared base, a prod-only dependency stage, a build stage with the full dependency set, and a slim final stage that ships only the production node_modules and the built dist.

ghcr.io/quenchworks/images/node:24.18.056.1 MBأُعيد بناؤها 2 days ago
# Base: a common starting point for the dependency and build stages.
FROM ghcr.io/quenchworks/images/node:24.18.0 AS base
WORKDIR /app
ENV PNPM_HOME=/tmp/pnpm \
npm_config_cache=/tmp/npm
# prod-deps: resolve production dependencies only.
FROM base AS prod-deps
COPY package.json pnpm-lock.yaml ./
RUN ["corepack", "enable"]
RUN ["pnpm", "install", "--prod", "--frozen-lockfile"]
# build: install the full dependency set and build.
FROM base AS build
COPY package.json pnpm-lock.yaml ./
RUN ["corepack", "enable"]
RUN ["pnpm", "install", "--frozen-lockfile"]
COPY . .
RUN ["pnpm", "run", "build"]
# final: prod node_modules + built dist on a clean node base, nonroot.
FROM ghcr.io/quenchworks/images/node:24.18.0 AS final
WORKDIR /app
ENV NODE_ENV=production
COPY --from=prod-deps /app/node_modules ./node_modules
COPY --from=build /app/dist ./dist
COPY --from=build /app/package.json ./package.json
USER 1001
EXPOSE 3000
CMD ["node", "dist/server.js"]

هذا الملف Dockerfile مثبّت على خط 24.18.0 . للاطّلاع على شرح سطرًا بسطر وعلى متغيّرات المنظومات (npm/Yarn، pip/uv/Poetry، Maven/Gradle)، راجع دليل ابنِ تطبيق Node.

المشروع المنبع: https://github.com/nodejs/node