Ensure secrets are not stored in Dockerfiles
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-docker-4.10 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Docker 4.10?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-docker-4-10)More formats (shields.io, HTML) on the badges page.
---
name: cis-docker-4.10
description: "Ensure secrets are not stored in Dockerfiles"
category: cis-docker
version: "1.8.0"
author: cyberstrike-official
tags: [cis, docker, linux, containers, images, dockerfile, build, secrets]
cis_id: "4.10"
cis_benchmark: "CIS Docker Benchmark v1.8.0"
tech_stack: [linux, docker]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 4.10 Ensure secrets are not stored in Dockerfiles (Manual)
## Profile Applicability
- Level 1 - Docker - Linux
## Description
Do not store any secrets in Dockerfiles.
## Rationale
Docker images are not opaque and contain information about the commands used to build them. As such secrets should not be included in Dockerfiles used to build images as they will be visible to any users of the image.
## Impact
A proper secrets management process will be required for Docker image building.
## Audit Procedure
Run the below command to get the list of images:
```bash
docker images
```
Run the below command for each image in the list above, and look for any secrets:
```bash
docker history <IMAGE_ID>
```
Alternatively, if you have access to Dockerfile for the image, verify that there are no secrets as described above.
## Remediation
Do not store any kind of secrets within Dockerfiles. Where secrets are required during the build process, make use of a secrets management tool, such as the buildkit builder included with Docker.
## Default Value
By default, there are no restrictions on storing config secrets in the Dockerfiles.
## References
1. https://docs.docker.com/develop/develop-images/build_enhancements/#new-docker-build-secret-information
## CIS Controls
### v8
**3 Data Protection**
Develop processes and technical controls to identify, classify, securely handle, retain, and dispose of data.
### v7
**13 Data Protection**
Data Protection
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!