docker-build

docker-build is a skill for Claude Code from berkcangumusisik/claude-code-practices. It costs 14 tokens per session (316 once invoked), scanned A, original, MIT.

A Docker setup assistant for creating or improving a Dockerfile, the recipe used to package an application into a runnable container.

In plain words
What is it for?
Use it to detect the project type, review or create a Dockerfile, update .dockerignore, and provide commands for building and running the image.
Why use it?
It helps produce smaller, safer container images with suitable build steps, caching, ignored files, and runtime settings.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/berkcangumusisik/claude-code-practices/docker-build
Any agent
npx skills add berkcangumusisik/claude-code-practices --skill docker-build
Clone the repo
git clone --depth 1 https://github.com/berkcangumusisik/claude-code-practices

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for docker-build

README.md
[![agentmods](https://agentmods.dev/badge/skills/berkcangumusisik/claude-code-practices/docker-build.svg)](https://agentmods.dev/skills/berkcangumusisik/claude-code-practices/docker-build)
Your own site
<a href="https://agentmods.dev/skills/berkcangumusisik/claude-code-practices/docker-build"><img src="https://agentmods.dev/badge/skills/berkcangumusisik/claude-code-practices/docker-build.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 316 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00014 $0.00316
Opus 5 $0.00007 $0.00158
Sonnet 5 $0.00003 $0.00063
Haiku 4.5 $0.00001 $0.00032

Measured 6d ago against content hash 6196962e9cc4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

docker-build scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/docker-build/SKILL.md · 54 lines

What it actually says

Docker Setup

  1. Detect project type:
cat package.json 2>/dev/null | grep '"main"\|"start"\|"scripts"' -A 5
ls -la | grep -E "Dockerfile|docker-compose|\.dockerignore"
  1. If Dockerfile exists, review it for:

    • Multi-stage build (build stage vs runtime stage)
    • Layer caching order (dependencies before source)
    • Running as non-root user
    • .dockerignore completeness
    • Image size optimization
  2. If no Dockerfile, generate one following best practices:

# Multi-stage: build → runtime
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production

FROM node:20-alpine AS runtime
RUN addgroup -S app && adduser -S app -G app
WORKDIR /app
COPY --from=builder /app/node_modules ./node_modules
COPY . .
USER app
EXPOSE 3000
CMD ["node", "dist/index.js"]
  1. Also create/update .dockerignore:
node_modules
dist
.env*
.git
coverage
*.test.*
  1. Show docker build and docker run commands to test.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 54 lines · 14 tokens per session scan A 6196962e9cc4

Subscribe to this mod's changes

docker-build is a skill published in the GitHub repository berkcangumusisik/claude-code-practices (10 stars, last pushed 4mo ago), licensed MIT. It adds 14 tokens to every session and 316 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

open-source

Documentation reference for writing Python code using the browser-use open-source library. Use this skill whenever the user needs help with Agent, Browser, or Tools configuration, is writing code that imports from browseruse, asks about @sandbox deployment, supported LLM models, Actor API, custom tools, lifecycle…

browser-use/browser-use · 137 tokens

deploy-docker-compose

Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…

omnigent-ai/omnigent · 84 tokens

langbot-deploy

Deploy and configure a LangBot instance — Docker / Docker Compose, Kubernetes, the config.yaml model, the Box sandbox runtime, the plugin runtime, and the global API key. Use when installing, deploying, upgrading, or configuring LangBot in production or self-hosted environments. Triggers on "deploy langbot", "langbot…

langbot-app/LangBot · 104 tokens

skill-builder

Automatically detect source types and build AI skills using Skill Seekers. Use when the user wants to create skills from documentation, repos, PDFs, videos, or other knowledge sources.

yusufkaraaslan/Skill_Seekers · 38 tokens

golden-chat-topics

Use when testing the goldenchattopics golden build.

yusufkaraaslan/Skill_Seekers · 15 tokens

golden-rss-empty

Use when testing the empty rss golden build.

yusufkaraaslan/Skill_Seekers · 14 tokens