containerize-apps
Facilitates application containerization with impact-aware Dockerfiles and configurations for seamless deployment.
Install this skill
Security score
The containerize-apps skill was audited on Feb 9, 2026 and we found 29 security issues across 4 threat categories, including 1 high-severity. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 86 | ```yaml |
Wget to non-GitHub URL
| 270 | **Problem:** `wget http://localhost:3000` fails with IPv6 resolution |
Access to .env file
| 111 | - DATABASE_URL=${DATABASE_URL} # From .env (external Neon) |
Access to .env file
| 126 | ### 3.3 .env.docker Template |
Access to .env file
| 261 | **Code change:** Server-side routes use `process.env.SERVER_API_URL || process.env.NEXT_PUBLIC_API_URL` |
Access to .env file
| 379 | - [ ] .env.docker template with service names |
External URL reference
| 94 | - NEXT_PUBLIC_API_URL=http://localhost:8000 |
External URL reference
| 95 | - NEXT_PUBLIC_SSO_URL=http://localhost:3001 |
External URL reference
| 99 | - SERVER_API_URL=http://api:8000 |
External URL reference
| 100 | - SERVER_SSO_URL=http://sso-platform:3001 |
External URL reference
| 112 | - FRONTEND_URL=http://web:3000 # Docker service name! |
External URL reference
| 113 | - CORS_ORIGINS=http://localhost:3000,http://web:3000 |
External URL reference
| 117 | test: ["CMD", "curl", "-f", "http://localhost:8000/health"] |
External URL reference
| 135 | API_URL=http://api:8000 |
External URL reference
| 136 | SSO_URL=http://sso:3001 |
External URL reference
| 137 | FRONTEND_URL=http://web:3000 |
External URL reference
| 158 | "http://localhost:3000", |
External URL reference
| 159 | "http://localhost:8000", |
External URL reference
| 160 | "http://web:3000", // ADD: Docker frontend |
External URL reference
| 161 | "http://api:8000", // ADD: Docker backend |
External URL reference
| 169 | "http://localhost:3000", |
External URL reference
| 170 | "http://web:3000", # ADD: Docker frontend |
External URL reference
| 171 | os.getenv("FRONTEND_URL", "http://localhost:3000"), |
External URL reference
| 177 | - `NEXT_PUBLIC_API_URL`: Must be build ARG, set to http://api:8000 |
External URL reference
| 178 | - `BETTER_AUTH_URL`: Runtime ENV, set to http://sso:3001 |
External URL reference
| 257 | - NEXT_PUBLIC_API_URL=http://localhost:8000 # Browser only |
External URL reference
| 259 | - SERVER_API_URL=http://api:8000 # Server only |
External URL reference
| 270 | **Problem:** `wget http://localhost:3000` fails with IPv6 resolution |
External URL reference
| 274 | test: ["CMD", "wget", "--spider", "http://127.0.0.1:3000/"] # NOT localhost! |