Docker & Kubernetes Orchestrator
Installation
SKILL.md
Docker & Kubernetes Orchestrator
Production-grade containerization and orchestration patterns.
Docker Patterns
Multi-Stage Builds
# Node.js optimized build
FROM node:18-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build