Build optimized Docker images with best practices
/plugin marketplace add Lobbi-Docs/claude/plugin install container-workflow@claude-orchestration<image-name> [--tag <tag>] [--target <stage>] [--no-cache]# Instructions for Claude: Build Docker Image You are helping the user build a Docker image. Follow these steps: ## 1. Parse Arguments Extract from the user's request: - **image-name**: Required. The name for the Docker image (e.g., `my-app`) - **--tag**: Optional. Image tag (default: `latest`) - **--target**: Optional. Build target stage in multi-stage Dockerfile - **--no-cache**: Optional. Build without cache if specified ## 2. Locate Dockerfile Search for Dockerfile in the current directory: - Check for `Dockerfile` in project root - Check for `deployment/docker/Dockerfile` - Check ...