fix(agenthub): Correct Docker CMD path for compiled TypeScript
TypeScript builds to dist/src/server.js, not dist/server.js because tsconfig preserves source directory structure. Fixes MODULE_NOT_FOUND error on container startup. Related to BARAAA-50. Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
parent
4cbd6f6e8a
commit
6d0515da8e
1 changed files with 1 additions and 1 deletions
|
|
@ -84,4 +84,4 @@ HEALTHCHECK --interval=30s --timeout=5s --retries=3 --start-period=10s \
|
|||
ENTRYPOINT ["/usr/bin/tini", "--"]
|
||||
|
||||
# Start the application
|
||||
CMD ["node", "dist/server.js"]
|
||||
CMD ["node", "dist/src/server.js"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue