원클릭으로
docker-test
Build and smoke-test the Docker image locally to validate Dockerfile and binary startup
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Build and smoke-test the Docker image locally to validate Dockerfile and binary startup
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run govulncheck locally and check for outdated Go dependencies
Run gosec on a specific package and cross-reference findings against suppression list and TODO tracker
Generate table-driven Go tests for a package with httptest, context helpers, and config parsing patterns
Validate a config.yaml file against the Config schema and constraint rules from config/config.go
Draft conventional commit messages from staged changes for release-please
| name | docker-test |
| description | Build and smoke-test the Docker image locally to validate Dockerfile and binary startup |
| user_invocable | true |
Build the Docker image locally and verify the binary starts correctly.
/docker-test — no arguments needed
Dockerfile to understand the build stages and expected binary namedocker build -t hyprmcp-gw:test .
--help:docker run --rm hyprmcp-gw:test --help
docker inspect hyprmcp-gw:test --format '{{.Config.Entrypoint}} | User: {{.Config.User}}'
Report results:
docker images hyprmcp-gw:test --format '{{.Size}}')/mcp-gatewayClean up the test image:
docker rmi hyprmcp-gw:test
Build: OK (XX.Xs)
Binary: OK (--help exits 0)
Image: XX MB
Base: distroless nonroot
User: 65532