RockteMQ-AI commented on issue #110: URL: https://github.com/apache/rocketmq-operator/issues/110#issuecomment-5259920398
**Issue Evaluation** Category: `bug` | Status: **Build Issue** The `/manager` binary is missing from the container image. This typically happens when: 1. The Dockerfile does not include the build step, or 2. The binary is built for a different architecture (e.g., built on macOS ARM but running on Linux AMD64), or 3. The `COPY` instruction in the Dockerfile references the wrong path. **Fix:** Ensure the Dockerfile builds the binary inside the container (multi-stage build) or that cross-compilation targets the correct OS/arch: ```bash GOOS=linux GOARCH=amd64 go build -o manager main.go ``` --- *Automated evaluation by github-manager* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
