STIG hardening for container images: what assessors check in FedRAMP and DoD stacks (2026)

By
Yael Nardi
August 5, 2026
Diagram comparing official Claude Code container with 107 critical CVEs versus Minimus hardened container with zero critical CVEs

Container security in regulated environments is not just about passing a scan. It is about proving which controls belong to the image, which are inherited from the host and orchestrator, and which evidence an auditor will actually accept. Most teams discover quickly that there is no single “container STIG” to implement. Instead, compliance depends on stitching together multiple DISA artifacts, correctly validating inheritance, and turning STIG hardening into a repeatable build-and-attestation process rather than a quarterly remediation project.

This guide explains how STIG hardening works for container images in practice, which controls genuinely apply at the image layer, where OpenSCAP and signed attestations fit into the pipeline, and how regulated teams operationalize continuous compliance across FedRAMP and DoD environments.

Key Takeaways

  • There is no DISA-published container-specific STIG. Container hardening for regulated environments is governed by four DISA artifacts: the Container Platform Security Requirements Guide (SRG) V2R4 (188 findings: 8 CAT I, 177 CAT II, 3 CAT III), the Kubernetes STIG V2R6 (92 findings: 18 CAT I, 74 CAT II), the General Purpose Operating System (GPOS) SRG, and the DoD DevSecOps Enterprise Container Hardening Process Guide v1.2.
  • Per the DoD Container Hardening Process Guide §5, "with a properly locked down hosting environment, containers inherit most of the security controls and benefits from infrastructure to host OS-level remediation requirements." In practice, that means most CAT II findings on a host-OS STIG scan against a container image are false positives. The 3PAO needs to be walked through the inheritance with a control-allocation table.
  • FedRAMP makes STIG hardening contractual via SSP CM-6 (a) Requirement 1: "The service provider shall use the DoD STIGs to establish configuration settings; CIS Level 2 guidelines shall be used if STIGs are not available; Custom baselines shall be used if CIS is not available." That clause flows into seven NIST SP 800-53 control families (CM-6, RA-5, SC-2, SC-3, SC-4, SC-28, SC-39) every container artifact in the boundary has to satisfy.
  • Validating STIG compliance in production is a four-artifact stack: a build-time OpenSCAP scan against the GPOS SRG XCCDF profile, a signed STIG-scan in-toto attestation attached to the image, an admission-controller policy (Kyverno, OPA Gatekeeper, Ratify) that rejects images without that attestation, and continuous re-scan and re-attest on the vendor's CVE remediation SLA (typically 7 days for critical, 14–30 for high, medium, and low).

What This Guide Covers

A STIG, or Security Technical Implementation Guide, is a DISA-published configuration standard that converts NIST SP 800-53 controls into technology-specific, machine-readable rules. Containers complicate the picture, because no DISA-published container STIG exists. Regulated teams have to assemble the equivalent from four overlapping DISA artifacts and then defend the assembly in front of a 3PAO.

This guide explains how regulated teams can approach STIG hardening for container images, including control inheritance, image-level evidence, OpenSCAP validation, signed attestations, and admission-policy enforcement. The four phases below cover the full program: requirements, inheritance, image-level application, and validation.

1. What STIGs Actually Require for Containerized Environments

A STIG is a DISA-published configuration standard that converts NIST SP 800-53 controls into technology-specific, machine-readable rules. For containerized environments, no DISA-published container STIG exists. DISA instead governs containers through the Container Platform SRG, the GPOS SRG, the Kubernetes STIG, and the DoD Container Hardening Process Guide v1.2.

SRG vs. STIG. A Security Requirements Guide (SRG) is a high-level, technology-neutral set of security requirements derived from NIST SP 800-53 (for example, the General Purpose Operating System SRG). A Security Technical Implementation Guide (STIG) is the technology-specific, machine-readable XCCDF implementation of an SRG (for example, the Red Hat Enterprise Linux 9 STIG). SRGs say what; STIGs say how.

Severity Category Codes (CAT I / II / III)

DISA assigns every finding a severity category that drives remediation expectations.

Code Severity What It Means Remediation Expectation
CAT I High Vulnerability allows direct unauthorized or superuser access Immediate remediation; blocks ATO
CAT II Medium High potential to give attackers access if combined with other findings Prompt remediation
CAT III Low Could lead to compromise; lowest priority Tracked and remediated as part of normal patch cadence


Source: DISA Severity Category Codes (per the DISA STIGs library, accessed April 2026) and Anchore's "DISA STIG Compliance Requirements Explained" pillar (May 2025).

The Container-Specific STIG and SRG Inventory (CY2026)

The four DISA artifacts that govern container hardening, with current CY2026 versions and finding counts:

DISA Artifact Latest Version Findings CAT I / II / III Scope
Container Platform SRG V2R4 (2025-09-10) 188 8 / 177 / 3 Orchestration platform (Kubernetes, MKE, OpenShift): registry, runtime, keystore, identity, audit
Kubernetes STIG V2R6 (2026-02-12) 92 18 / 74 / 0 Kubernetes API server, controller manager, scheduler, kubelet, etcd
General Purpose Operating System (GPOS) SRG Continuously updated n/a n/a Host OS controls; applied to the host under most container deployments and selectively to the image via custom STIG-aligned profiles
DoD DevSecOps Enterprise Container Hardening Process Guide v1.2 (DoD CIO) n/a n/a Authoritative guidance on inheritance and how to apply STIGs to containers


Sources: stigviewer.com (April 2026 snapshot), public.cyber.mil/stigs, and the DoD DevSecOps PDF library at dl.dod.cyber.mil.

Deprecated Artifacts You Will Run Into

Three artifacts surface in older guidance and audit packs and should be ignored in CY2026:

  • DKER-EE-XXXX (Docker Enterprise 2.x STIG) is deprecated. Tenable marked the corresponding audit file deprecated in August 2024.
  • Earlier Container Platform SRG releases (V1Rx, V2R1 to V2R3) are superseded by V2R4.
  • Generic "container STIG" downloads from third-party sites are not authoritative. Only DISA artifacts under public.cyber.mil/stigs are.

The image plane is where hardened container images collapse most of the four-artifact picture into a build-time property. The next section explains why.

2. Inherited vs. Container-Level Controls: Where the Real Work Happens

Most STIG controls scanned against a container image are not actually the container's responsibility. They are inherited from the host operating system, the container runtime, or the orchestrator. The DoD Container Hardening Process Guide v1.2 §5 codifies this inheritance: "with a properly locked down hosting environment, containers inherit most of the security controls and benefits from infrastructure to host OS-level remediation requirements."

The same guide, §6, is equally direct about the consequence. "If an OpenSCAP scan returns noncompliant result(s), always evaluate the validity of those findings. False positives are common within major host OS-based containers, as the security profiles normally account for all host-level controls potentially not applicable to a container build."

In the FedRAMP and DoD IL boundary reviews I have run, the §5 quote settles roughly two-thirds of the audit conversation about why a container image "fails" 30 controls on a host-OS STIG scan. The §6 quote covers the rest.

The 4-Plane Control Allocation Table

This is the table every assessor needs to see. Each row maps a control area to the plane that owns it, the plane that surfaces it, and the planes that inherit it.

Control Area Host OS Container Runtime Orchestrator (K8s) Image Notes
Auditing (auditd, audit log forwarding) Owns (auditd, journald, rsyslog) Surface (runtime emits container events) Surface (kube-apiserver audit policy) Inherits Containers cannot install auditd; logs flow through host. False-positive risk on host-OS STIG scans.
Process and network isolation (namespaces, cgroups) Owns (kernel) Owns (runtime sets namespace bindings) Surface (Pod Security Standards) Inherits Maps to NIST SP 800-53 SC-39 (process isolation).
Address Space Layout Randomization (ASLR) Owns Inherits Inherits Inherits Container ASLR is host-kernel ASLR.
Host firewall and network policy Owns (iptables, nftables, firewalld) Inherits Owns (NetworkPolicy, CNI) Inherits Do not run an in-container firewall.
Filesystem encryption and data at rest Owns (LUKS, dm-crypt) Inherits Owns (encrypted etcd, Secret encryption at rest) Surface (readOnlyRootFilesystem) Maps to NIST SP 800-53 SC-28.
Time synchronization (NTP, chrony) Owns Inherits Inherits Inherits Container clock equals host clock.
Vulnerability scanning and KEV check n/a n/a n/a Owns (image registry scan and admission gate) The single most important image-level control.
Minimization (no shell, no package manager, no compiler) n/a n/a n/a Owns Hardened, minimal images directly satisfy this.
TLS 1.2+ on every channel Owns (host services) Owns (runtime API socket, containerd gRPC) Owns (kube-apiserver, etcd, kubelet) Surface (application TLS config) Container Platform SRG V2R4 V-233015 and V-233016.
FIPS-validated cryptography Surface (host kernel FIPS mode) Surface Surface Owns (image-level CMVP-validated modules: OpenSSL FIPS provider, BoringCrypto, Bouncy Castle) Hardened-image vendors ship FIPS variants because the host-FIPS dependency is brittle.
Centralized identity (OIDC, SSO, RBAC) Owns n/a Owns (kube-apiserver OIDC) n/a Container Platform SRG V-233019.
Read-only root filesystem n/a Owns (--read-only) Owns (securityContext.readOnlyRootFilesystem: true) Inherits Required by Container Platform SRG and CIS Docker Benchmark §4.
USER non-root in image n/a n/a Surface (securityContext.runAsNonRoot) Owns (USER instruction in Dockerfile) Maps to former DKER-EE-003200 and to Container Platform SRG container-runtime findings.
Capability dropping (--cap-drop=ALL) n/a Owns (runtime default cap-set) Owns (Pod Security Standards Restricted) Inherits Maps to former DKER-EE-001950 and to NIST SP 800-53 SC-3.
Seccomp, AppArmor, SELinux Owns (host policies) Owns (runtime sets default seccomp) Owns (securityContext.seccompProfile) Surface (image must not require additional capabilities) Default seccomp profile must not be disabled.


Key:
"Owns" means the plane is the authoritative source of the control. "Surface" means the plane exposes a knob but does not own remediation. "Inherits" means the plane gets the control for free from a lower plane. A row with multiple "Owns" entries means the control is enforced in more than one place. That is intentional defense in depth, and the auditor expects to see it.

What This Means for Your Scan Results

  1. A host-OS STIG (RHEL 9 STIG, Ubuntu 22.04 STIG) scanned against a container image will produce CAT II and CAT III false positives for any control marked "Inherits" in the table above. These may be expected inherited controls rather than image-level findings, but the rationale should be documented clearly for the assessor.
  2. The DoD Container Hardening Process Guide §6 explicitly sanctions marking these as false positives in the audit record, provided the rationale ("inherited from host") is documented.
  3. Findings on rows where the image is "Owns" or "Surface" are not false positives. Treat them as real, remediate at the image (or in the orchestrator's PodSecurity policy), and re-scan.

A base image with no shell, no package manager, no compiler, and no static setuid binaries inherits zero CAT I findings on minimization-related controls. That reduction in image-level surface area is what makes hardened images useful in STIG-aligned environments.

3. How Minimal, Hardened Images Satisfy STIG Requirements at the Base

Minimal, hardened container images satisfy STIG requirements at the base because they remove the very components that drive most CAT I and CAT II findings on a host-OS STIG scan: shells, package managers, compilers, setuid binaries, and debugging tools. They are one practical way to support FedRAMP CM-6 (a) Requirement 1 inside a container without running a 30-day OpenSCAP remediation cycle on every release.

"The service provider shall use the DoD STIGs to establish configuration settings; Center for Internet Security up to Level 2 (CIS Level 2) guidelines shall be used if STIGs are not available; Custom baselines shall be used if CIS is not available." — FedRAMP SSP Appendix A, High Security Controls (CM-6)

That clause is the contract language behind every commercial hardened-image SLA on the market.

The STIG → NIST 800-53 → Image-Level Artifact Mapping

NIST 800-53 Control Family What It Requires DISA Artifact Image-Level Evidence
CM-6 Configuration settings Documented, repeatable secure configuration baseline DoD STIGs, CIS Level 2 fallback Signed STIG-scan attestation (XCCDF), CIS Docker Benchmark scan, image digest pin
RA-5 Vulnerability monitoring Continuous scanning and remediation timeline (FedRAMP: 30/90/180) Container Platform SRG (V-233xxx vulnerability findings) Multi-scanner CVE report, CISA KEV catalog cross-reference, VEX document for "not affected" claims
SC-2 Application partitioning Separation of user functionality from system management Container Platform SRG (least-privilege access to registry, runtime, keystore) Non-root USER, dropped capabilities, no shell
SC-3 Security function isolation Security functions isolated from non-security functions Container Platform SRG, Kubernetes STIG seccomp default profile, AppArmor or SELinux label, dropped CAP_SYS_ADMIN
SC-4 Information in shared resources Prevent unauthorized data flow between processes Container Platform SRG (namespace isolation findings) No shared host namespaces (PID, IPC, network, UTS, user)
SC-28 Protection of information at rest Encrypt sensitive data at rest GPOS SRG (filesystem encryption) readOnlyRootFilesystem: true, encrypted volume mounts, host-OS LUKS
SC-39 Process isolation Maintain separate execution domains for each process Container Platform SRG (cgroups and namespaces) Default cgroup limits, no privileged containers, no Docker socket mount


Source for the seven-family list: Coalfire and Chainguard's FedRAMP container hardening session (June 25, 2025). Each row is the chain of evidence an auditor will request: control → STIG/SRG citation → image artifact. A signed image with a STIG-scan attestation, an SBOM, and a VEX document can support evidence collection across these control families, alongside host, runtime, orchestrator, and operational controls.

How Minimization Satisfies CAT I Findings

  1. No shell means no /bin/sh-based privilege escalation findings. A distroless or scratch-based hardened image has nothing for Container Platform SRG or GPOS SRG findings on shell-banner, MOTD, and login-program controls to attach to. The findings evaluate as not applicable, not as failures.
  2. No package manager means no installed-but-unused-package findings. Container Platform SRG and CIS Docker Benchmark both penalize unused packages. A from-source-built minimal image typically ships 5–30 system packages instead of 200–300, which removes the bulk of "package not required" findings before the scan runs.
  3. No compiler, no debugger, no curl or wget means no MITRE ATT&CK T1611 toolkit on disk. Post-compromise tooling (T1611 Escape to Host) assumes the attacker reuses what is already on the image. Minimization caps the toolkit at zero.

Build-from-Source vs. Strip-After-the-Fact

Build-from-source hardened images compile each system package directly from upstream source. Examples include Chainguard Wolfi, Minimus, and DHI Hardened System Packages.

Strip-after-the-fact approaches start with a standard distribution and remove what is not needed. Examples include RapidFort and smaller slim variants of upstream images.

Build-from-source produces the cleanest STIG-scan results, because nothing was ever installed in the first place. Per Docker's DHI 1-year-anniversary blog (April 14, 2026), DHI now builds tens of thousands of Alpine and Debian system packages from source under a SLSA Build Level 3 pipeline.

Production-Grade Hardened-Image Options for STIG-Aligned Environments (CY2026)

Vendor or Project STIG-Relevant Offering Patch SLA (Representative) FedRAMP / DoD Posture
DISA Iron Bank (Platform One) Accredited hardened-container catalog (200+ images, repo1.dso.mil/dsop) DoD process DoD IL2/IL4/IL5 accreditation already in place
Docker Hardened Images (DHI) STIG variants under custom GPOS-aligned profile, with signed STIG scan attestation 7d critical/high, 30d med/low FIPS and STIG variants require Docker subscription
Chainguard Containers GPOS SRG XCCDF datastream + 400+ FIPS-validated images (CMVP #4856 OpenSSL, #4943 Bouncy Castle, #4407 BoringCrypto) 7d critical, 14d high, med, low Chainguard STIG via Early Access Program
Canonical Chiselled Ubuntu / Canonical Kubernetes Built-in DISA STIG audit subcommand (canonical-kubernetes); chiselled Ubuntu base Canonical Ubuntu Pro cadence FIPS modules available; CIS-aligned
BellSoft Alpaquita JVM-tuned minimal, FIPS modules BellSoft LTS FIPS modules available
Anchore Enterprise STIG add-on (cinc-auditor engine, ubi8/ubi9/ubuntu2204/ubuntu2404/Apache Tomcat 9/Nginx profiles) Customer-defined DoD reference customer base
Red Hat UBI Micro 9 Minimal RHEL-based, signed by Red Hat Red Hat erratum FIPS modules in RHEL erratum chain; NIST SP 800-190 alignment


A scope caveat from the field. Hardened images do not eliminate the need for host-OS STIG hardening, kube-apiserver STIG hardening, runtime threat detection, or EDR on the host node. They turn the image plane from a CAT II liability into a CAT II asset. They also remove the bulk of the OpenSCAP false-positive review burden, which is where the real time savings show up in a 12–18 month FedRAMP cycle. Treat the hardened image as one of seven control families in the boundary, not as the boundary itself.

4. Validating STIG Compliance for Container Images in Production

Validating STIG compliance for a container image in production is a four-artifact stack. The four artifacts: a build-time SCAP scan (typically OpenSCAP) against the GPOS SRG XCCDF profile, a signed in-toto STIG-scan attestation attached to the image, an admission-controller policy that rejects unsigned or unscanned images, and a continuous re-scan loop that fires whenever the upstream vendor patches a critical CVE.

STIG compliance is not a one-time gate. It is a continuous-evidence regime that has to survive the next CVE, patch, release, and admission decision.

4.1 Run an OpenSCAP Scan Against the GPOS SRG XCCDF Profile

Use a vendor-neutral OpenSCAP run against a generic image to avoid lock-in:

# Pull a SCAP datastream (GPOS-aligned, container-tailored — for example,
# from Chainguard's open `chainguard-dev/stigs` repo, or your vendor's profile).
curl -fsSLO https://raw.githubusercontent.com/chainguard-dev/stigs/main/gpos/xml/scap/ssg/content/ssg-chainguard-gpos-ds.xml

# Run OpenSCAP against any image in your local registry.
docker run -i --rm -u 0:0 --pid=host \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -v "$(pwd)/out:/out" \
  --entrypoint sh \
  docker.io/chainguard/openscap:latest-dev <<'EOF'
oscap-docker image <your-registry>/<your-image>:<digest> xccdf eval \
  --profile "xccdf_basic_profile.check" \
  --report /out/report.html \
  --results /out/results.xml \
  /usr/share/xml/scap/ssg/content/ssg-chainguard-gpos-ds.xml
EOF


report.html is human-readable for the assessor. results.xml is XCCDF for ingestion into MITRE Heimdall, SCAP Compliance Checker, Anchore Enterprise, or your GRC tool.

Other scanners that ingest XCCDF: cinc-auditor (used by Anchore Enterprise), Sysdig Secure (50+ OOTB DISA STIG policies), Prisma Cloud, Aqua, and Twistlock (legacy). DHI users get the equivalent attestation pre-built, retrieved with docker scout attest get --predicate-type https://docker.com/dhi/stig/v0.1 --verify dhi.io/<image>:<tag>.

4.2 Attach the Scan Results as a Signed in-toto Attestation

A STIG-scan attestation is a signed, in-toto-formatted statement saying "this image was scanned against STIG profile X, on date Y, with result Z." It is the single most-requested audit artifact in a FedRAMP 3PAO review.

{
  "name": "GPOS STIG Scan",
  "profile": "xccdf_org.ssgproject.content_profile_stig",
  "publisher": "Your Org / Your Vendor",
  "result": "passed",
  "summary": {
    "totalChecks": 198,
    "passedChecks": 91,
    "failedChecks": 0,
    "notApplicableChecks": 107,
    "defaultScore": 100
  },
  "tool": "openscap",
  "outputs": ["html", "xccdf"]
}


Per Docker's DHI 1-year-anniversary blog (April 14, 2026), DHI ships 17 signed attestations per image, including the STIG scan, FIPS compliance, CycloneDX SBOM, SPDX SBOM, SLSA provenance v1, VEX, virus scan, secrets scan, and changelog. In-toto attestations are the CNCF-blessed standard. Cosign signs them, Rekor logs them, MITRE Heimdall visualizes them, and GRC tools (Drata, Vanta, Anchore Enterprise) ingest them.

4.3 Enforce the Attestation at Admission Time

A build-time scan without admission-time enforcement is a dead letter. The next CI run will silently regress the cluster. Use the Kyverno admission controller to enforce hardened base images by requiring a STIG-scan attestation before admitting a pod:

apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
  name: require-stig-attestation
spec:
  validationFailureAction: Enforce
  background: false
  rules:
    - name: verify-stig-scan
      match:
        any:
          - resources:
              kinds: ["Pod"]
      verifyImages:
        - imageReferences:
            - "your-registry.example/*"
          attestations:
            - predicateType: https://docker.com/dhi/stig/v0.1
              attestors:
                - entries:
                    - keyless:
                        subject: "https://github.com/your-org/.github/workflows/build.yaml@refs/heads/main"
                        issuer: "https://token.actions.githubusercontent.com"
              conditions:
                - all:
                    - key: "{{ summary.failedChecks }}"
                      operator: Equals
                      value: 0


The policy rejects any pod whose image lacks a Cosign-signed STIG-scan attestation with zero failed checks. Equivalent enforcement options include OPA Gatekeeper (ConstraintTemplate), Sigstore policy-controller, Ratify (CNCF), and Connaisseur. Pick one.

In regulated clusters, Day-1 friction often comes from third-party operators, such as logging, observability, and ingress components, that pull images from registries without a STIG attestation. The pattern that works: stage the policy in Audit mode for the first two weeks. Exempt namespaces that host third-party operators. Then flip to Enforce once the platform team has either rebuilt those images internally or accepted documented exceptions.

4.4 Re-Scan and Re-Attest on the Vendor's CVE Remediation SLA

Some hardened-image vendors publish remediation timelines for critical and high-severity CVEs. These timelines vary by vendor, severity, support tier, and whether a fix is available upstream.

Severity FedRAMP Remediation SLA Representative Hardened-Image Vendor SLA
Critical 30 days 7 days
High 30 days 7–14 days
Medium 90 days 14–30 days
Low 180 days 14–30 days


Source: Coalfire and Chainguard's FedRAMP container hardening session (June 25, 2025); Docker FedRAMP blog (August 2025).

A program that achieves all four artifacts above produces, on every release, the exact evidence package a 3PAO will request: XCCDF scan results, signed STIG attestation, admission-controller policy, and remediation history. Centralized compliance dashboards for CIS, FIPS, and STIG collapse those artifacts into a per-image view. Re-attestation becomes a per-build event, not a quarterly project. That is the practical definition of continuous compliance for containerized environments.

How Minimus Approaches STIG Hardening

Minimus builds container images directly from upstream source code. The image plane in the 4-plane allocation table arrives with most CAT I and CAT II findings already non-applicable. Every image ships with a Cosign signature, a CycloneDX SBOM, a VEX document, and a 48-hour critical-CVE remediation SLA. Together those artifacts produce the four items a 3PAO requests during a FedRAMP review.

Each image is mapped to NIST SP 800-190, NIST SP 800-53, CIS Docker Benchmark, FIPS 140-3, and the Container Platform SRG. The base layer becomes the strongest, not the weakest, link in your STIG attestation chain.

Browse the Minimus image gallery at images.minimus.io or read the verification, SBOM-retrieval, and admission-policy guides at docs.minimus.io.

Frequently Asked Questions

Is There a STIG for Containers?

No. As of April 2026, DISA has not published a container-image-specific STIG. Container hardening for regulated environments is governed by four DISA artifacts: the Container Platform SRG V2R4 (188 findings), the Kubernetes STIG V2R6 (92 findings), the General Purpose Operating System SRG, and the DoD DevSecOps Enterprise Container Hardening Process Guide v1.2. Per DoD guidance, the GPOS SRG is used to assess image-level controls in the absence of a container-specific STIG.

What Is the Difference Between an SRG and a STIG?

A Security Requirements Guide (SRG) is a high-level, technology-neutral set of security requirements derived from NIST SP 800-53 (for example, the General Purpose Operating System SRG). A Security Technical Implementation Guide (STIG) is the technology-specific, machine-readable XCCDF implementation of an SRG (for example, the Red Hat Enterprise Linux 9 STIG). SRGs say what; STIGs say how.

Which STIG Controls Apply Inside the Container vs. on the Host?

Most STIG controls scanned against a container image (auditing, ASLR, host firewall, host filesystem encryption, time synchronization, kernel parameters) are inherited from the host operating system per the DoD Container Hardening Process Guide §5. Image-level controls are minimization (no shell, no package manager, no compiler), CVE remediation, FIPS-validated cryptography, the Dockerfile USER directive, and TLS configuration in the application. A 4-plane allocation table (host OS, runtime, orchestrator, image) is the cleanest way to disambiguate them.

How Do Hardened Container Images Help with STIG Compliance?

Hardened, minimal container images remove the components (shells, package managers, compilers, debuggers, setuid binaries) that drive most CAT I and CAT II findings on a host-OS STIG scan. They typically ship with a signed STIG-scan attestation, an SBOM, a VEX document, and a contractual CVE patch SLA (often 7 days for critical). Together those artifacts produce the evidence package a FedRAMP 3PAO requests during a CM-6, RA-5, SC-2, SC-3, SC-4, SC-28, and SC-39 review.

How Do I Scan a Container Against a STIG?

Run OpenSCAP with the oscap-docker image subcommand against the GPOS SRG XCCDF datastream (or a vendor-published container STIG profile such as Chainguard's chainguard-dev/stigs GPOS datastream or the Docker DHI custom STIG profile). Output two artifacts: an HTML report for the assessor and an XCCDF XML results file for ingestion into MITRE Heimdall, Anchore Enterprise, Sysdig Secure, Prisma Cloud, or the SCAP Compliance Checker. Re-run on every image rebuild and attach the result as a signed in-toto attestation.

Yael Nardi
CBO
use minimus for free

Free minimized container images

The world’s largest selection of free, ~0 CVEs, compliant container images.
No login. No $. Just pull & go.