Add HelloWorld debug agent and per-chat handler

This commit is contained in:
josedario87
2025-06-04 21:51:05 -06:00
parent dec4922d42
commit 8d2e8f4854
14 changed files with 582 additions and 35 deletions

View File

@@ -3,5 +3,6 @@ WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install --production
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["node","server.js"]
CMD ["node","dist/server.js"]