Claude-code-plugins windsurf-dockerfile-generation

install
source · Clone the upstream repo
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/saas-packs/skill-databases/windsurf/skills/windsurf-dockerfile-generation" ~/.claude/skills/jeremylongshore-claude-code-plugins-windsurf-dockerfile-generation && rm -rf "$T"
manifest: plugins/saas-packs/skill-databases/windsurf/skills/windsurf-dockerfile-generation/SKILL.md
source content

Windsurf Dockerfile Generation

Overview

This skill enables AI-assisted Docker configuration within Windsurf. Cascade analyzes your application to generate optimized Dockerfiles with multi-stage builds, minimal base images, proper layer caching, and security best practices.

Prerequisites

  • Windsurf IDE with Cascade enabled
  • Docker installed locally
  • Application with defined dependencies
  • Understanding of containerization concepts
  • Target deployment environment defined

Instructions

  1. Analyze Application
  2. Select Base Image
  3. Generate Dockerfile
  4. Configure Security
  5. Test and Validate

See

${CLAUDE_SKILL_DIR}/references/implementation.md
for detailed implementation guide.

Output

  • Optimized production Dockerfile
  • Development Dockerfile with dev tools
  • docker-compose.yml for orchestration
  • .dockerignore for build optimization

Error Handling

See

${CLAUDE_SKILL_DIR}/references/errors.md
for comprehensive error handling.

Examples

See

${CLAUDE_SKILL_DIR}/references/examples.md
for detailed examples.

Resources