docker-expert
Installation
SKILL.md
Docker Expert
Advanced Docker patterns beyond basic container operations.
Multi-Stage Builds
# Stage 1: Build
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
Advanced Docker patterns beyond basic container operations.
# Stage 1: Build
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build