| name | docker-patterns |
| description | Provides Docker and containerization best practices including multi-stage builds, security hardening, and compose patterns. Use when writing Dockerfiles, optimizing images, setting up containers, or when user mentions 'Docker', 'container', 'Dockerfile', 'docker-compose', 'image'. |
| type | skill |
| category | patterns |
| status | stable |
| origin | tibsfox |
| modified | false |
| first_seen | "2026-02-07T00:00:00.000Z" |
| first_path | examples/docker-patterns/SKILL.md |
| superseded_by | null |
Docker Patterns
Best practices for building secure, efficient, and production-ready Docker images and compositions.
Multi-Stage Builds
Multi-stage builds separate build dependencies from runtime, producing smaller and more secure images.
Node.js / TypeScript
# Stage 1: Install dependencies
FROM node:20-alpine AS deps
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --ignore-scripts
# Stage 2: Build
FROM node:20-alpine AS build
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN npm run build
RUN npm prune --production
# Stage 3: Production
FROM node:20-alpine AS production
WORKDIR /app
RUN addgroup -g 1001 appgroup && \
adduser -u 1001 -G appgroup -s /bin/sh -D appuser
COPY --from=build --chown=appuser:appgroup /app/dist ./dist
COPY --from=build --chown=appuser:appgroup /app/node_modules ./node_modules
COPY --from=build --chown=appuser:appgroup /app/package.json ./
USER appuser
EXPOSE 3000
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:3000/health || exit 1
CMD ["node", "dist/index.js"]
Python
# Stage 1: Build
FROM python:3.12-slim AS build
WORKDIR /app
RUN python -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Stage 2: Production
FROM python:3.12-slim AS production
WORKDIR /app
RUN groupadd -r appgroup && useradd -r -g appgroup -s /sbin/nologin appuser
COPY --from=build /opt/venv /opt/venv
COPY --from=build --chown=appuser:appgroup /app .
ENV PATH="/opt/venv/bin:$PATH"
USER appuser
EXPOSE 8000
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')" || exit 1
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "4", "app:create_app()"]
Go
# Stage 1: Build
FROM golang:1.22-alpine AS build
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o /server ./cmd/server
# Stage 2: Production (scratch = no OS, minimal attack surface)
FROM scratch AS production
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=build /server /server
USER 65534:65534
EXPOSE 8080
ENTRYPOINT ["/server"]
Layer Caching Optimization
Docker caches each layer. Order instructions from least-frequently-changed to most-frequently-changed.
Layer Order (Top = Changes Least)
# 1. Base image (changes: rarely)
FROM node:20-alpine
# 2. System dependencies (changes: rarely)
RUN apk add --no-cache dumb-init
# 3. Create user (changes: never)
RUN adduser -D appuser
# 4. Working directory (changes: never)
WORKDIR /app
# 5. Package manifests (changes: occasionally)
COPY package.json package-lock.json ./
# 6. Install dependencies (changes: occasionally, cached if manifests unchanged)
RUN npm ci
# 7. Application code (changes: frequently)
COPY . .
# 8. Build step (changes: frequently)
RUN npm run build
# 9. Runtime config (changes: rarely)
USER appuser
CMD ["node", "dist/index.js"]