docker-containers

Installation
SKILL.md

Docker Containerization

Build and deploy applications with Docker containers, multi-stage builds, and production-ready configurations.

Core Patterns

Dockerfile

# Multi-stage build
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
Installs
6
GitHub Stars
6
First Seen
Feb 21, 2026
docker-containers — spjoshis/claude-code-plugins