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

推荐订阅源

The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
V
Visual Studio Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
Vercel News
Vercel News
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
D
DataBreaches.Net
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
A
About on SuperTechFans
云风的 BLOG
云风的 BLOG
The Cloudflare Blog
宝玉的分享
宝玉的分享
V
V2EX
Microsoft Azure Blog
Microsoft Azure Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Stop Shipping Vulnerabilities by Default: An Intro to Doc...
Falcon · 2026-05-07 · via DEV Community

Docker Hardened Images are changing how teams think about container security — not as an afterthought, but as a starting point.


The problem nobody talks about until it's too late

You've just pushed a new feature. CI is green. The pull request is merged. You pour yourself a coffee and move on. Then three weeks later, your security scanner lights up like a Christmas tree — and the culprit isn't your code. It's the base image you pulled from Docker Hub without a second thought.

This is the silent contract most developers have unconsciously signed: ship fast, worry about CVEs later. And it works — until it doesn't.

A standard ubuntu:latest or node:20 image ships with hundreds of packages you never asked for — shell utilities, package managers, debug tools, old libraries. Each one is a potential attack surface. Most containers don't need them. All of them carry risk.

Some numbers to put this in perspective:

  • ~70% of container images have high or critical CVEs on day one
  • A typical node:20 base image includes 400+ packages
  • Around 60% of those packages are never used by the app itself

The uncomfortable truth? The problem isn't that your code is insecure. It's that the foundation you're building on was never designed with production hardening in mind.


Enter Docker Hardened Images (DHI)

Docker Hardened Images are a curated set of production-ready, security-hardened base images offered through Docker Hub. They're not just "smaller images" or "images with fewer packages." They represent a deliberate philosophy: run only what your app actually needs.

What makes DHI different:

  • Minimal attack surface — stripped to runtime dependencies only
  • CVE-free at release — zero known vulnerabilities when the image ships
  • No shell by default — no bash, no sh, no unnecessary entry points
  • Signed & verifiable — Sigstore/cosign image signing included
  • SLSA provenance — full supply chain attestation
  • Regular patched releases — fast, predictable patch cadence
  • Non-root user by default — runs as nonroot out of the box
  • Multi-arch support — works on amd64 and arm64

"Security isn't a layer you add on top. With DHI, it's the layer you start from."


What it looks like in practice

Migrating to DHI doesn't require a complete rewrite. In most cases, it's a one-line change in your Dockerfile — with a very noticeable difference in your vulnerability scan output.

# Before — standard Node image, ~500 packages, ~30 CVEs
FROM node:20
WORKDIR /app
COPY . .
RUN npm ci --omit=dev
CMD ["node", "server.js"]

# After — Docker Hardened Image, minimal footprint, 0 known CVEs
FROM docker.io/docker/hardened-node:20
WORKDIR /app
COPY --chown=nonroot:nonroot . .
RUN npm ci --omit=dev
USER nonroot
CMD ["node", "server.js"]

Enter fullscreen mode Exit fullscreen mode

That's essentially it for a simple app. The image is smaller, the scan is clean, and you're running as a non-root user out of the box. Your CI pipeline, your orchestrator, your deployment process — none of that changes.

Heads up: DHI images don't include a shell. This means you can't docker exec -it container bash anymore. That's intentional — and it's also the whole point. If you need to debug, use ephemeral debug containers or structured logging.


Where DHI actually shines — real use cases

Production APIs & microservices

Internet-facing services are the highest-priority targets. DHI reduces the surface area attackers can reach even if they find an entry point.

Compliance-heavy environments

SOC 2, PCI-DSS, HIPAA all require you to demonstrate you're minimizing risk. A CVE-free base image with signed provenance is audit gold.

Kubernetes workloads

Pods with minimal images mean smaller escape vectors. Combine DHI with Pod Security Standards for defense in depth that actually holds up.

CI/CD pipelines

Build runners and job containers that execute untrusted code should never have more capabilities than they need. DHI enforces exactly that.

Serverless & Lambda-style functions

Tiny images mean faster cold starts. When you're paying per millisecond, stripping unused packages is both a security and a cost win.

Regulated industries

Finance, healthcare, and government workloads benefit from the SLSA provenance and signed attestations DHI ships with every image.


DHI vs. what you're probably using now

Feature Standard Docker Hub images Docker Hardened Images
CVEs at release Often dozens Zero known CVEs ✅
Shell included Yes (attack surface) No (by default) ✅
Image signing Inconsistent Sigstore / cosign ✅
SLSA provenance Rarely available Included ✅
Non-root default Usually root nonroot user ✅
Patch cadence Varies by maintainer Rapid, predictable ✅

Is it worth the migration effort?

For most services: yes, and faster than you'd expect. The majority of Node.js, Python, and Go apps can be migrated in under an hour. The main adjustment is getting comfortable without a shell — which, once you adapt your debugging workflow, is actually freeing.

The harder cases are apps that rely on shell scripts inside the container during startup, or that dynamically install packages at runtime (you shouldn't be doing that anyway, but here we are). For those, DHI offers variants with slightly more tooling so you can migrate incrementally.

The real question isn't whether the migration is worth it. It's whether your current posture — knowingly shipping containers with 30+ CVEs — is a risk you want to keep accepting. Especially when the fix is one line in a Dockerfile.


Ready to ship your first hardened container?

Docker Hardened Images are available on Docker Hub today. Here's how to get started:

  1. Pick your runtime — Node, Python, Go, Java — DHI has you covered
  2. Swap the FROM line in your Dockerfile
  3. Run a vulnerability scan — compare it to your current image
  4. Adjust your debug workflow — ephemeral containers, structured logs
  5. Ship it

The difference will be obvious from the first scan. And your future self — the one who doesn't have to explain a CVE breach to stakeholders — will thank you.


Have you already migrated to DHI or distroless images? Share your experience in the comments — especially if you hit any gotchas worth warning others about.


Tags: docker security devops containers devsecops