用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/G1Joshi/Agent-Skills --skill docker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | docker |
| description | Docker containerization with Dockerfile, Compose, and multi-stage builds. Use for containers. |
Docker standardizes software delivery by packaging apps into containers. In 2025, Docker emphasizes BuildKit for high-performance builds and Docker Scout for supply chain security.
docker compose).# syntax=docker/dockerfile:1
FROM node:22-alpine AS base
WORKDIR /app
COPY package*.json ./
FROM base AS deps
RUN npm ci
FROM base AS release
COPY --from=deps /app/node_modules ./node_modules
COPY . .
CMD ["node", "index.js"]
The modern build engine (default in 2025). Features concurrent build steps, secret mounting, and cache exports.
DOCKER_BUILDKIT=1 docker build .
Keep images tiny by separating "build" environment (compilers, SDKs) from "runtime" environment (minimal OS).
Define multi-container apps.
docker compose up -d --watch (New watch mode syncs files continuously).
Do:
docker init: Generates best-practice Dockerfiles and .dockerignore for your language.Don't:
USER node or create a specific user in the Dockerfile.--mount=type=secret during build, never COPY .env.