skills/smithery.ai/devops-patterns

devops-patterns

Installation
SKILL.md

DevOps Patterns Skill

Purpose

Deploy and operate production-grade infrastructure with modern DevOps practices.

Docker Patterns

Multi-Stage Build (Optimized)

# Stage 1: Dependencies
FROM node:20-alpine AS deps
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production && npm cache clean --force
Installs
2
First Seen
Mar 22, 2026
devops-patterns from smithery.ai