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

go

بيئة تشغيل · Language runtime · standard · v1.26.5

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

سلسلة أدوات Go مُحصّنة لتجميع الملفات التنفيذية في مرحلة بناء؛ اقرن المُخرَج مع صورة static الأساسية لبيئة التشغيل. أحدث 3 إصدارات مستقرة (1.24/1.25/1.26).

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

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

A+· 100/1000 ثغرة قابلة للإصلاح
0
حرجة
0
عالية
0
متوسطة
0
منخفضة
0
غير معروفة

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

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

1 وسم

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

الإصدارالحجمالنشرالبصمة
1.26.5الأحدث59.1 MB2026-07-08sha256:d79e890ef340…

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

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

FROM ghcr.io/quenchworks/images/go:1.26.5

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

docker pull ghcr.io/quenchworks/images/go:1.26.5
خط الإصدار
1.26.5
الخط الأحدث
1.26.5
المعماريات
amd64, arm64
تعمل كـ
nonroot (uid 1001)
نظام الملفات الجذر
للقراءة فقط
الرخصة
BSD-3-Clause

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

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

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

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

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

The classic two-stage Go build: compile a fully static binary with CGO disabled on the go image, then copy that one file onto the tiny static base. No toolchain, no shell, no package manager in the final image.

ghcr.io/quenchworks/images/go:1.26.559.1 MBأُعيد بناؤها 22 days ago
# Build stage: compile a fully static binary.
FROM ghcr.io/quenchworks/images/go:1.26.5 AS build
USER root
WORKDIR /src
# CGO off makes the binary static; caches go to /tmp for the read-only rootfs.
ENV CGO_ENABLED=0 \
GOOS=linux \
GOCACHE=/tmp/gocache \
GOMODCACHE=/tmp/gomodcache
COPY go.mod go.sum ./
RUN ["go", "mod", "download"]
COPY . .
RUN ["go", "build", "-trimpath", "-ldflags=-s -w", "-o", "/out/app", "./cmd/app"]
# Runtime stage: just the binary on the tiny static base, nonroot.
FROM ghcr.io/quenchworks/images/static
COPY --from=build /out/app /app
USER 1001
EXPOSE 8080
ENTRYPOINT ["/app"]

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

المشروع المنبع: https://github.com/golang/go