Build Docker image with best practices, optimization, and security scanning
/plugin marketplace add pluginagentmarketplace/custom-plugin-docker/plugin install pluginagentmarketplace-docker-container-assistant@pluginagentmarketplace/custom-plugin-docker# /docker-build Command Build optimized Docker image with best practices validation and security scanning. ## Usage ## Parameters | Parameter | Required | Default | Description | |-----------|----------|---------|-------------| | path | No | ./Dockerfile | Path to Dockerfile | | --tag | No | app:latest | Image tag | | --scan | No | true | Run security scan | ## Workflow 1. **Validate Dockerfile** - Check syntax errors - Verify base image exists - Lint with hadolint rules 2. **Check .dockerignore** - Verify exists - Suggest additions (node_modules, .git, etc.) 3. **B...