agentsclimarketplace

Docker web

Skill a5c-ai/babysitter/library/specializations/web-development/skills/docker-web

Docker containerization for web apps, multi-stage builds, and optimization.From its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill docker-web

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.2 KB, 199 tokens by cl100k_base, as published. Nobody here has run it

Docker Web Skill

Expert assistance for containerizing web applications.

Capabilities

  • Create multi-stage Dockerfiles
  • Optimize image size
  • Configure for production
  • Handle Node.js apps
  • Set up docker-compose

Dockerfile

# Build stage
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build

# Production stage
FROM node:20-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/.next ./.next
COPY --from=builder /app/public ./public
EXPOSE 3000
CMD ["npm", "start"]

Target Processes

  • containerization
  • production-deployment
  • ci-cd-setup

What ships with it: 1 file

299 B alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.