Use this skill when writing, reviewing, or optimizing Dockerfiles, even if the user just says their image is too large, their build is slow, or they need to harden a container for production. Covers multi-stage builds, layer caching, .dockerignore, non-root users, and image size optimization.
npx skills add https://github.com/docker/skills --skill docker-build-strategies
This skill provides rules and patterns for writing and reviewing production-quality Dockerfiles. Apply it when the main task is image-build quality: multi-stage builds, cache behavior, non-root execution, build context hygiene, and runtime image size.
Activate this skill when:
.dockerignore file to a projectDo not use this skill when:
compose.yamlUse multi-stage builds when the project has a build step or when build-time dependencies differ from runtime. Separate build-time dependencies from the runtime image.
FROM ... AS build, FROM ... AS runtime).distroless, alpine, or slim variants.COPY --from=build.COPY --link when copying from a prior stage or adding static files — it improves cache reuse by making the COPY independent of previous layers.See references/multi-stage-builds.md for language-specific patterns (Go, Node, Python, Java).
Order Dockerfile instructions from least-frequently-changed to most-frequently-changed.
package.json, go.mod, requirements.txt) and install steps before copying application source code.RUN --mount=type=cache,target=/go/pkg/mod go build ...RUN --mount=type=cache,target=/root/.npm npm ciRUN --mount=type=cache,target=/root/.cache/pip pip install ...latest in production.RUN commands with && to reduce layer count, but keep logically distinct steps separate for cache granularity.See references/layer-caching.md for detailed cache invalidation rules and cache mount patterns.
Never bake credentials into the image. Use BuildKit secrets and SSH mounts so credentials are available only during the specific RUN step that needs them, and never persist in any layer or docker history output.
ARG or ENV. Both end up in the image layers and are inspectable via docker history.COPY credential files into the build context: .npmrc, .pypirc, .netrc, pip.conf, Maven settings.xml, .env, cloud credentials (~/.aws/credentials, ~/.config/gcloud/, service-account JSON files, ~/.azure/), secret-manager tokens (~/.vault-token), package-registry tokens (~/.cargo/credentials.toml), TLS keys (*.pem, *.p12), kubeconfig, SSH keys (id_rsa, id_dsa, id_ed25519, id_ecdsa). Even when the final stage does not copy them forward, they live in intermediate layers and the build cache.RUN command in a way that persists it to a layer or emits it to build logs. Access the secret file (e.g., /run/secrets/<id>, or directly via the mount target=) — never echo "$(cat /run/secrets/X)", never substitute it into a shell argument that will be logged with --progress=plain.RUN --mount=type=secret for package manager registry credentials: RUN --mount=type=secret,id=npmrc,target=/root/.npmrc,required=false \
--mount=type=cache,target=/root/.npm \
npm ci --omit=dev
The secret is available only inside that RUN, never written to a layer. Use required=true when the build will always need the credential (e.g., all packages come from a private registry, so missing the secret should fail the build immediately); use required=false only when the secret is optional (the build can succeed with public packages alone).
RUN --mount=type=ssh for fetching private Git repositories or modules. The build container has no known_hosts by default — populate it inside the same RUN: RUN --mount=type=ssh \
mkdir -p -m 0700 /root/.ssh && \
ssh-keyscan github.com >> /root/.ssh/known_hosts && \
git clone [email protected]:org/private-repo.git
Do NOT use StrictHostKeyChecking=no as a shortcut — it disables host-key verification entirely. ssh-keyscan pins the known fingerprint at build time.
# Ensure an SSH agent is running with the key loaded (or use --ssh default=<key-file>):
eval "$(ssh-agent -s)" && ssh-add ~/.ssh/id_ed25519
docker buildx build \
--secret id=npmrc,src=$HOME/.npmrc \
--ssh default \
.
Alternatively, pass the key file directly without an agent: --ssh default=$HOME/.ssh/id_ed25519.
.dockerignore exclusions of .env and credential files are defense in depth, not the primary mechanism — keep them, but do not rely on them as your only protection.See references/multi-stage-builds.md for per-language patterns (npm, pip, Maven, Go GOPRIVATE).
Always generate a .dockerignore alongside the Dockerfile. Exclude:
.git/, .github/, .vscode/, .idea/node_modules/, __pycache__/, .venv/, vendor/ (when rebuilt in the build stage)*.md, LICENSE, docs/.env files and any secretsSee assets/dockerignore-example for a comprehensive template.
Always configure the final image to run as a non-root user.
RUN addgroup --system --gid 1001 appgroup && \
adduser --system --uid 1001 --ingroup appgroup appuser
COPY --from=build --chown=appuser:appgroup /app /app--chown with COPY --link, always use the numeric UID:GID you assigned (e.g., --chown=1001:1001 if you used --uid 1001 --gid 1001 above), not named users. --link creates an independent layer where named users from prior RUN instructions are not available.USER appuser instruction after all file operations and before ENTRYPOINT/CMD.USER nonroot:nonroot.FROM scratch (Go static binaries), distroless, or Alpine-based images for the runtime stage.RUN layer that installs packages: apt-get install -y ... && rm -rf /var/lib/apt/lists/*.dockerignore aggressively to minimize the build context.# syntax=docker/dockerfile:1 directive as the first line to enable BuildKit features.WORKDIR before any COPY or RUN instructions — never rely on the default /.ENTRYPOINT with exec form (["binary"]) over shell form.EXPOSE to document the listening port.LABEL org.opencontainers.image.source=...docker-project-foundations.docker-compose-patterns.docker system prune, docker rm -f, image/network/builder pruning) and a cross-product index of destructive-command guardrails, use docker-destructive-guardrails.references/multi-stage-builds.md — Language-specific multi-stage patterns for Go, Node.js, Python, and Javareferences/layer-caching.md — Deep dive on layer ordering, cache invalidation, and BuildKit cache mountsassets/Dockerfile.go — Multi-stage Go build with distroless runtime and non-root userassets/Dockerfile.nodejs — Multi-stage Node.js build with proper layer caching and non-root userassets/Dockerfile.python — Python build with virtual env, layer ordering, and non-root userassets/dockerignore-example — Comprehensive .dockerignore templatescripts/verify-build.sh — Builds the image, reports size and configured user. bash scripts/verify-build.sh [--help] [IMAGE_NAME]
Exit status is 0 when all Docker commands succeed or help is requested, the failing Docker command's non-zero status when verification fails, and 2 for invalid arguments.
checks/verification.md — Detailed verification runbook for manual review.Take docker/docker-build-strategies from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference pip, apt.
Without those the skill loads but fails at the first command.