Skip to content

Minimus Goes Free to Commoditize Hardened Container Images

By removing the registration wall, Minimus challenges Chainguard and shifts the container security focus from scanning to stripping bloat.

Emeka Okafor
Emeka Okafor
Security Editor · Jun 24, 2026 · 4 min read
Minimus Goes Free to Commoditize Hardened Container Images

Every developer knows the dread of running a container scan on a fresh build only to be greeted by a wall of high and critical CVE alerts. Most of these vulnerabilities do not live in the application code. Instead, they are inherited from the underlying base image, buried in legacy utilities, shell environments, and package managers that the application never actually calls.

Minimus, founded by Twistlock veterans Ben Bernstein, Dima Stopel, and John Morello, is taking an aggressive swing at this problem. By making its entire catalog of hardened, distroless container images free and removing the registration wall, the company is commoditizing the secure base image. It is a direct challenge to Chainguard and other players in the secure software supply chain space, such as Red Hat, SUSE, and RapidFort.

This move shifts the security paradigm. Instead of asking how fast you can scan and patch a bloated image, the goal becomes shipping so little software that there is almost nothing left to scan.

The Mechanics of Distroless Hardening

To understand why this matters, look at the architecture of a hardened image. Standard base images like Debian or Ubuntu include a full userland. Even Alpine, while lightweight, contains a shell (sh) and a package manager (apk).

Minimus images are built from source on a distroless foundation. They strip away everything non-essential, leaving only the application binary and its immediate runtime dependencies. If an attacker manages to exploit an application-level vulnerability, they find themselves in an environment without bash, curl, apt, or wget. The attacker's operational path is broken because the tools required to download payloads or move laterally across the network simply do not exist.

According to Minimus catalog data, this approach yields image size reductions often exceeding 90% to 98% compared to standard base images. For example, the advanced Redis, Nginx, and Postgres images show up to a 100% reduction in inherited vulnerability noise. This is not just a security win. It translates directly to faster CI/CD pipelines, quicker cold starts in serverless environments, and reduced registry storage costs.

The Developer Workflow and minicli

Adopting these images is designed to be a drop-in process. In theory, migrating is as simple as updating the FROM instruction in a Dockerfile.

To facilitate this, Minimus includes a command-line tool called minicli. The tool is designed for both developers and AI agents to discover images, inspect configurations, and automate migrations. For example, instead of manually hunting for the correct tag, developers can use the CLI to audit their existing setups and map them to secure equivalents.

The catalog covers a wide array of standard infrastructure components, including PostgreSQL, RabbitMQ, Elasticsearch, and Prometheus, alongside Kubernetes utilities like cert-manager and Argo CD. It even includes hardened versions of Model Context Protocol (MCP) servers used to link AI agents with tools and data sources.

The free tier also includes compliance-aligned images, such as those meeting FIPS, NIST, and STIG requirements. Historically, obtaining FIPS-compliant or STIG-hardened images required navigating enterprise sales cycles or building them from scratch, a notoriously painful engineering task. The founders, who authored the NIST SP 800-190 container security standards, have baked these compliance frameworks directly into the build pipeline.

The Catch: The Reality of Free Tier SLAs

While the "no login, no credit card" policy is highly appealing, developers must look closely at the fine print before swapping out their entire production fleet.

The free tier comes with a significant caveat: there are no contractually backed SLAs or guaranteed patching timelines. Minimus explicitly states that security updates may be applied to paid subscriptions before or instead of the free tier.

For enterprise teams, this creates a clear boundary. While you can use the free images to clean up local development environments and eliminate CVE noise in staging, relying on them for production workloads carries risk. If a critical zero-day vulnerability drops, paid Enterprise Edition subscribers benefit from a 24-hour remediation SLA for Known Exploited Vulnerabilities (KEV) and a 48-hour SLA for other critical issues. Free users, on the other hand, are at the mercy of the community build pipeline's schedule.

This model mirrors the classic open-core or dual-license strategy. Minimus is giving away the commodity product (the static hardened image) to capture developer mindshare and drive bottom-up adoption, while reserving the operational guarantees (remediation SLAs, custom image builders, and private registry syncing) for the enterprise checkbook.

The Competitive Landscape

By removing the registration wall entirely, Minimus is attempting to lower the friction of adoption to absolute zero. It forces competitors to justify their pricing models based on operational support and orchestration tooling rather than the mere existence of a clean image.

For developers, this price war is an outright win. The baseline standard for container security has been raised. Shipping a bloated, vulnerability-ridden base image is no longer an acceptable default when hardened, zero-CVE alternatives are a single unauthenticated pull away.

Sources & further reading

  1. Minimus container images are now free — images.minimus.io
  2. Free Hardened Container Images | Minimus — minimus.io
  3. Minimus Makes Hardened Container Images Freely Available to All Developers - Cloud Native Now — cloudnativenow.com
  4. Minimus opens its entire secure container image catalog to developers for free - SiliconANGLE — siliconangle.com
  5. Minimus aims to solve one of open-source's long-festering problems - The New Stack — thenewstack.io
Emeka Okafor
Written by
Emeka Okafor · Security Editor

Emeka has spent over a decade tracking threat actors, vulnerability disclosures, and the evolving landscape of application security, bringing a sharp continent-spanning perspective to his reporting. He's known for translating dense CVE advisories into clear, actionable context that developers and security teams alike actually read.

Discussion 2

Join the discussion

Sign in or create an account to comment and vote.

Oleg Petrov @db_nerd_oleg · 15 hours ago

need to check this out for my postgres containers

Dee Robinson @data_eng_dee · 13 hours ago

@db_nerd_oleg, how does minimus handle backfills for existing images, or would you need to rebuild your postgres containers from scratch to take advantage of their hardened images?

Related Reading