Docker: Production Image and Compose Rules
SkillFiles & storageProduction Docker best practices for writing Dockerfiles, Compose files, and Swarm stacks. Use whenever creating or editing a Dockerfile, a docker-compose / compose.yaml, or a stack file, or building and optimizing an image. Fixes the handful of things Claude reliably gets wrong: multi-stage builds, layer-cache ordering, exec-form ENTRYPOINT for correct signals and exit codes, init:true, keeping secrets and env out of the image, non-root users, and healthchecks. From production, not defaults.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Docker: Production Image and Compose Rules skill
What this skill tells your AI
The instructions your AI receives, as published by thedecipherist/claude-code-mastery-project-starter-kit in .claude/skills/docker/SKILL.md and read by ahel’s review.
From production, not defaults. Claude's Dockerfiles tend to be wrong in the same few ways. Fix them here.
Dockerfile
- Multi-stage builds, always. Build in a stage that has the compilers and dev dependencies, then
COPY --from=buildonly the artifacts into a slim runtime stage. The runtime image carries no build tools, which cuts size hard (a real build went from ~2GB to ~200MB) and removes a pile of CVEs.
FROM node:22 AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM node:22-slim AS runtime
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
COPY --from=build /app/dist ./dist
USER node
ENTRYPOINT ["node", "dist/server.js"]
-
Order layers by how often they change: stable first, source last. Docker caches each layer and rebuilds every layer after the first one whose inputs changed. So copy the dependency manifest and install deps BEFORE copying source:
COPY package*.json ./thenRUN npm cithenCOPY . .. Copy source first and a one-line code change reinstalls every dependency, every build. -
The runtime command is
ENTRYPOINT/CMDin exec form, neverRUN.RUNexecutes at build time; the container's process belongs inENTRYPOINT ["node","server.js"](a JSON array). Use exec form, not shell form (ENTRYPOINT node server.js): shell form runs your app under/bin/sh -c, soshis PID 1, it swallowsSIGTERM, and your app never shuts down gracefully (Docker waits out the grace period then SIGKILLs it) and its exit code is lost. Exec form makes your process PID 1 so signals and exit codes propagate.ENTRYPOINTfor the executable,CMDfor default args. -
Pin base image versions.
FROM node:22.3.0-slim, notnode:latest.latestmakes builds non-reproducible and shifts under you silently. Pin a tag (or a digest for full reproducibility), and expose it as anARGso it's easy to bump deliberately. -
Add a
.dockerignore. Excludenode_modules,.git,.env,dist, and local junk. Without it the whole directory ships as build context (slow), busts the cache on unrelated changes, and can bake a stalenode_modulesor a secret file into the image. -
Run as non-root. Containers run as root by default. Add a
USER(for exampleUSER node) before the entrypoint so a container escape isn't root on the host. -
Add a
HEALTHCHECK. Swarm and Compose use it to know a container is actually ready, which is what makes rolling updates and automatic rollback work. Without it, "running" only means the process started, not that it serves traffic. -
Combine and clean in one
RUN.apt-get update && apt-get install -y ... && rm -rf /var/lib/apt/lists/*in a single layer. A separateupdatelayer goes stale behind the cache, and the cleanup only shrinks the image if it happens in the same layer that added the files.
Compose and Swarm
-
init: trueon every service. The one always missed. It runs a tiny init (tini) as PID 1 that forwards signals to your process and reaps zombie children. Without it, signal handling and zombie reaping become your app's problem anddocker stopoften hangs to the timeout. Pair it with an exec-form ENTRYPOINT. -
Set resource
limitsANDreservations. Reservations make the scheduler place the container only where the resources exist; limits cap it so a runaway container can't take down the node. Both, not one. -
Configure rolling updates and rollback.
update_configwithparallelism: 1, adelay,order: stop-first(orstart-firstfor blue-green), andfailure_action: rollback. Combined with a HEALTHCHECK, a bad deploy rolls itself back instead of taking the service down. -
Reference services by name, never by IP. Container IPs change on every restart, scale, and update. Use the service name and let Docker DNS resolve it (
backend-service:8080). A hardcoded IP is a guaranteed future outage. -
Substitute env with defaults.
replicas: ${NGINX_REPLICAS:-2}andimage: registry/app:${BUILD_VERSION:-latest}keep one file working across environments through.env.
Secrets and config
-
Never bake secrets into the image.
ARGandENVvalues are stored in image layers and show up indocker history, so a secret written into the Dockerfile is a leaked secret. Use BuildKit build secrets (RUN --mount=type=secret,id=...) for build time, and Docker secrets (mounted at/run/secrets/<name>) or runtime env for run time. Docker secrets are encrypted at rest, never appear indocker inspect, and are scoped to the services that mount them. -
Secrets for sensitive, configs for the rest. Docker
secretfor certs, keys, and passwords (encrypted); Dockerconfigfor non-sensitive files like an IP blocklist (not encrypted, but versioned and injected the same way). Neither goes in the image, both are injected at deploy. -
Log to stdout/stderr, not to files inside the container. Write to
/dev/stdoutand/dev/stderrso Docker's logging driver and your aggregator collect them. Logging to a file inside the container hides the output and fills the writable layer.
This skill is built to grow. Add a rule when a real Dockerfile or stack failure has a stable, defensible fix.
Signals
- GitHub stars
- 338
- Forks
- 40
- Last commit
- Jun 2026
ahel review
S4info
community integration — published by thedecipherist, not dockerK1binfo
installs-packages
Automated review, not a security audit. Ruleset v1+k2.
Advanced
- Catalog kind
- skill
- Gateway key
docker-thedecipherist- Source
- github.com/thedecipherist/claude-code-mastery-project-starter-kit