deno
بيئة تشغيل · Language runtime · standard · v2.9.4
بيئة تشغيل Deno مُحصّنة لـ JavaScript وTypeScript، آمنة افتراضيًا بصلاحيات صريحة وأدوات مدمجة. أحدث إصدار مستقر (2).
تقرير الأمان (Trivy)
تقرير الأمان (Trivy) · deno 2.9.4
الإصدارات المنشورة
1 وسمكل وسم هو فهرس متعدد المعماريات (amd64 + arm64) مثبّت بالبصمة. موسوم بالإصدار، وليس أبدًا :latest.
| الإصدار | الحجم | النشر | البصمة |
|---|---|---|---|
| 2.9.4الأحدث | 47.9 MB | 2026-07-26 | sha256:2185617879a1… |
استخدمها كصورة أساس
أشِر إليها في سطر FROM داخل ملف Dockerfile. تعمل بدون صلاحيات الجذر، بنظام ملفات جذر للقراءة فقط، ومبنية لـ amd64 و arm64.
FROM ghcr.io/quenchworks/images/deno:2.9.4أو اسحبها مباشرة
docker pull ghcr.io/quenchworks/images/deno:2.9.4- خط الإصدار
- 2.9.4
- الخط الأحدث
- 2.9.4
- المعماريات
- amd64, arm64
- تعمل كـ
- nonroot (uid 1001)
- نظام الملفات الجذر
- للقراءة فقط
- الرخصة
- MIT
تحقّق من سلسلة التوريد
هذه الصورة موقّعة بـ cosign وتحمل قائمة مكوّنات SPDX SBOM وشهادة منشأ بناء SLSA على البصمة نفسها. تحقّق من الثلاثة جميعها قبل أن تبني عليها:
# 1. signature — built and signed by QuenchWorks CI
cosign verify ghcr.io/quenchworks/images/deno:2.9.4 \
--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/deno:2.9.4 \
--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/deno:2.9.4 \
--certificate-identity-regexp 'https://github.com/quenchworks/.+' \
--certificate-oidc-issuer https://token.actions.githubusercontent.comراجع دليل SBOM والمنشأ لقراءة قائمة المكوّنات واستخدام هذه الفحوص في التكامل المستمر.
أفضل ممارسة لملف Dockerfile لـ 2.9.4
Cache dependencies into a vendored, read-only-friendly cache in the build stage, then copy that cache and the app onto a clean deno base. The runtime DENO_DIR lives under /tmp.
# Build stage: cache deps into a fixed DENO_DIR, then compile checks.FROM ghcr.io/quenchworks/images/deno:2.9.4 AS buildUSER rootWORKDIR /appENV DENO_DIR=/deno-dir
COPY deno.json deno.lock ./RUN ["deno", "install", "--frozen"]COPY . .RUN ["deno", "cache", "main.ts"]
# Runtime stage: copy the cache + app onto a clean deno base, run nonroot.FROM ghcr.io/quenchworks/images/deno:2.9.4 AS runtimeWORKDIR /appENV DENO_DIR=/tmp/denoCOPY --from=build /deno-dir /tmp/denoCOPY --from=build /app /appUSER 1001EXPOSE 8000CMD ["deno", "run", "--allow-net", "--cached-only", "main.ts"]هذا الملف Dockerfile مثبّت على خط 2.9.4 . للاطّلاع على شرح سطرًا بسطر وعلى متغيّرات المنظومات (npm/Yarn، pip/uv/Poetry، Maven/Gradle)، راجع دليل ابنِ تطبيق Node.
المشروع المنبع: https://github.com/denoland/deno