惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
博客园 - 【当耐特】
量子位
博客园 - 叶小钗
有赞技术团队
有赞技术团队
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
博客园 - 司徒正美
爱范儿
爱范儿
美团技术团队
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
罗磊的独立博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
D
DataBreaches.Net
宝玉的分享
宝玉的分享

RapidFort Blog

How to Use RapidFort’s Curated Distroless Language Images RapidFort Joins Akrites: A Coordinated Response to the Open-Source Vulnerability Crisis DORA Is Not About Compliance. It Is About Resilience. Risk Over Compliance: What CISA RapidFort Test Blog Blog 4 Test Test Blog 3 Test 2 Mythos Vulnerability Assessment: Eliminate Real Risk, Not Just CVEs Securing Modern AI Workloads for National Security RBOM vs SBOM: The Critical Difference Between Software Inventory and Runtime Reality The Remediation Gap: When AI-Powered Discovery Outpaces Human Defense You Only Control 15% of Your Software. Here's How to Secure the Rest. Free ATO Readiness Cohort: Shorten Your Path to Federal Market US Cyber Strategy & Software Supply Chain Security EU CRA for Containers & Kubernetes: Scope, Deadlines & Steps PyPI, npm, and the New Frontline of Software Supply Chain Attacks GitHub Actions Security Audit: CI/CD Risk & Shell Injection What Is RBOM™? Runtime Bill of Materials vs SBOM Explained EU Cyber Resilience Act & Open Source Risk RapidFort Raises $42M Series A for Software Supply Chain Security Fintech Container Security 2026: SASM & RBOM™ RF Analyzer: Precision Container CVE Intelligence Kimia: Secure Kaniko Alternative for Kubernetes Builds AI-Powered Cyberattacks: How Defenders Must Adapt RapidFort Pioneered DoD Container Hardening | Industry Standard Turn Scanner Output into Verified CVE Elimination RapidFort's Giant Washing Machine: Cleaning Open Source at Scale Why SBOMs Fail: RBOM™ & Near-Zero CVE Images Fix the Gap Defeat NPM Supply Chain Worms: Near-Zero CVE Defense
Introducing a Bazel Ruleset for RapidFort’s deb-based Images
Jacob Mammoliti · 2026-07-08 · via RapidFort Blog

RapidFort has released a new Bazel ruleset, rules_rapidfort_deb, for building secure, minimal container images on deb-based Linux distributions.

Bazel is an open-source build and test tool designed for fast, reliable, and reproducible builds. It uses a declarative model where projects define their build targets and dependencies, allowing Bazel to understand what needs to be built, tested, or cached. Bazel can also be extended through plugins called rulesets, which add support for different languages, frameworks, platforms, and workflows.

Introducing rules_rapidfort_deb

rules_rapidfort_deb enables customers to build container images on deb-based Linux distributions using Bazel. The ruleset is designed to prioritize patched software provided by RapidFort when constructing an image, helping teams reduce vulnerability exposure while maintaining a reproducible build process.

For customers currently using rules_distroless, rules_rapidfort_deb can act as a drop-in replacement in your Bazel configuration.

Getting Started with rules_rapidfort_deb

rules_rapidfort_deb is available today and can be added to your MODULE.bazel file:

bazel_dep(name = "rules_rapidfort_deb", version = "0.1.0")

apt = use_extension("@rules_rapidfort_deb//apt:extensions.bzl", "apt")
apt.install(
    name = "rf_noble",
    lock = "//:noble.lock.json",
    manifest = "//:noble.yaml",
)
use_repo(apt, "rf_noble")

To learn more about RapidFort and how it helps teams reduce vulnerability exposure

Log in to the RapidFort platform to access the full documentation for rules_rapidfort_deb and get started today.

Get Started