Ensure that unnecessary packages are not installed in the container
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-docker-4.3 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Docker 4.3?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-docker-4-3)More formats (shields.io, HTML) on the badges page.
---
name: cis-docker-4.3
description: "Ensure that unnecessary packages are not installed in the container"
category: cis-docker
version: "1.8.0"
author: cyberstrike-official
tags: [cis, docker, linux, containers, images, dockerfile, build, attack-surface]
cis_id: "4.3"
cis_benchmark: "CIS Docker Benchmark v1.8.0"
tech_stack: [linux, docker]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 4.3 Ensure that unnecessary packages are not installed in the container (Manual)
## Profile Applicability
- Level 1 - Docker - Linux
## Description
Containers should have as small a footprint as possible, and should not contain unnecessary software packages which could increase their attack surface.
## Rationale
Unnecessary software should not be installed into containers, as doing so increases their attack surface. Only packages strictly necessary for the correct operation of the application being deployed should be installed.
## Impact
None.
## Audit Procedure
List all the running instances of containers by executing the command below:
```bash
docker ps --quiet
```
For each container instance, execute the relevant command for listing all installed packages, e.g.:
```bash
docker exec $INSTANCE_ID rpm -qa
```
The command above lists the packages installed. You should review the list and ensure that everything installed is actually required.
## Remediation
You should not install anything within the container that is not required.
You should consider using a minimal base image rather than the standard Centos, Debian, or Red Hat images if you can. Some of the options available include BusyBox and Alpine.
Not only can this trim your image size considerably, but there would also be fewer pieces of software which could contain vectors for attack.
## Default Value
Not Applicable.
## References
1. https://docs.docker.com/develop/develop-images/baseimages/
2. https://jpetazzo.github.io/2020/02/01/quest-minimal-docker-images-part-1/
## CIS Controls
### v8
**4.8 Uninstall or Disable Unnecessary Services on Enterprise Assets and Software**
Uninstall or disable unnecessary services on enterprise assets and software, such as an unused file sharing service, web application module, or service function.
### v7
**5.2 Maintain Secure Images**
Maintain secure images or templates for all systems in the enterprise based on the organization's approved configuration standards. Any new system deployment or existing system that becomes compromised should be imaged using one of those images or templates.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!