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

推荐订阅源

V
Visual Studio Blog
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
小众软件
小众软件
B
Blog RSS Feed
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta
人人都是产品经理
人人都是产品经理
Microsoft Security Blog
Microsoft Security Blog
Last Week in AI
Last Week in AI
H
Help Net Security
爱范儿
爱范儿
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
腾讯CDC

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