Deployement ready - #3
Conversation
Make HelixAgent deployment-ready: fix broken structure, add missing entrypoints, patch critical CVEs
… deps, multi-stage Dockerfile, pom.xml, Makefile native targets, CI workflow fixes Agent-Logs-Url: https://github.com/Trojan3877/HelixAgent/sessions/1ed22223-12a6-47b3-b814-efb06662354b Co-authored-by: Trojan3877 <182694928+Trojan3877@users.noreply.github.com>
…eployment Get repo deployment ready: wire agent core, fix LangGraph API, add missing deps, multi-stage Docker build
Updated project health and features section with new badges. Signed-off-by: Corey Leath <corey22blue@hotmail.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 3b129f3c74
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| RUN g++ -O3 -shared -std=c++17 -fPIC agent/cpp/vector.cpp -o agent/cpp/libvector.so | ||
|
|
||
| # Copy compiled Java planner JAR from build stage | ||
| COPY --from=java-builder /build/java/target/planner.jar agent/java/planner.jar |
There was a problem hiding this comment.
Use the Maven-configured JAR path in Docker COPY
Update this COPY --from=java-builder source path to match where mvn package writes the artifact; otherwise Docker builds fail at image creation time. In this commit, java/pom.xml configures maven-jar-plugin to emit planner.jar into ../agent/java, but this line still copies from /build/java/target/planner.jar, which does not exist in the builder stage.
Useful? React with 👍 / 👎.
c17ad55
into
copilot/make-repo-deployment-ready
No description provided.